rebased-podman/00-create-pod.sh

14 lines
232 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
2022-10-24 17:24:43 +02:00
chown -R 911:911 ./uploads
if [ ! -f ./script_config.sh ]; then
cp ./script_config_sample.sh ./script_config.sh
fi
2022-10-24 17:24:43 +02:00
podman pod create \
--name rebased-pod \
-p 5000:5000