13 lines
232 B
Bash
Executable file
13 lines
232 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir ./uploads ./static ./config -p
|
|
|
|
chown -R 911:911 ./uploads
|
|
|
|
if [ ! -f ./script_config.sh ]; then
|
|
cp ./script_config_sample.sh ./script_config.sh
|
|
fi
|
|
|
|
podman pod create \
|
|
--name rebased-pod \
|
|
-p 5000:5000
|