rebased-podman/00-create-pod.sh

12 lines
229 B
Bash
Raw Normal View History

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
if [ ! -f ./script_config.sh ]; then
cp ./script_config_sample.sh ./script_config.sh
fi
source ./script_config.sh
2022-10-24 17:24:43 +02:00
podman pod create \
--name rebased-pod \
-p $PORT:5000