2022-10-24 17:24:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-11-11 16:31:47 +01:00
|
|
|
mkdir ./uploads ./static ./config -p
|
2022-11-11 19:49:21 +01:00
|
|
|
|
2022-11-14 11:31:59 +01:00
|
|
|
if [ ! -f ./script_config.sh ]; then
|
|
|
|
cp ./script_config_sample.sh ./script_config.sh
|
|
|
|
fi
|
2022-11-14 15:51:45 +01:00
|
|
|
source ./script_config.sh
|
2022-10-24 17:24:43 +02:00
|
|
|
podman pod create \
|
2022-11-11 16:08:42 +01:00
|
|
|
--name rebased-pod \
|
2022-11-14 15:51:45 +01:00
|
|
|
-p $PORT:5000
|