mirrormanager-rocky/start-dev.sh

36 lines
1.3 KiB
Bash
Raw Normal View History

2024-08-28 12:51:25 +00:00
POD=mirrormanager2
2024-08-29 23:13:29 +00:00
podman pod exists $POD || podman pod create -p 5000:5000 -n $POD
2024-08-28 12:51:25 +00:00
2024-08-29 23:13:29 +00:00
#podman run \
# --pod $POD \
# --name nginx \
# --replace \
# -v $PWD/nginx.conf:/etc/nginx/conf.d/default.conf:ro \
# -d docker.io/library/nginx:1.13-alpine
2024-08-28 12:51:25 +00:00
test -d tmp || mkdir tmp
test -f client_secrets.json || (echo "missing client_secrets" && exit 2)
2024-08-29 23:20:59 +00:00
podman build -t git.resf.org/infrastructure/mirrormanager2:dev -f Containerfile
2024-08-29 23:13:29 +00:00
podman rm --force mm2 -t 1
2024-08-28 12:51:25 +00:00
podman run \
--pod $POD \
--name mm2 \
--replace \
-e 'MM2_CONFIG=/etc/mirrormanager/mirrormanager2.cfg' \
2024-08-29 23:13:29 +00:00
-e "MM2_SECRET_KEY=$(openssl rand -hex 32)" \
-e "MM2_PASSWORD_SEED=$(openssl rand -hex 32)" \
-e 'MM2_THEME_FOLDER=rocky' \
2024-08-28 12:51:25 +00:00
-v $PWD/mirrormanager2.cfg:/etc/mirrormanager/mirrormanager2.cfg \
-v $PWD/client_secrets.json:/etc/mirrormanager/client_secrets.json \
-v $PWD/tmp:/var/tmp:rw \
2024-08-29 23:13:29 +00:00
-v $PWD/static:/usr/lib/python3.12/site-packages/mirrormanager2/static \
-v $PWD/templates:/usr/lib/python3.12/site-packages/mirrormanager2/templates \
2024-08-29 23:20:59 +00:00
-d git.resf.org/infrastructure/mirrormanager2:dev
2024-08-28 12:51:25 +00:00
# Setup sqlite database
echo "mirrormanager2 and nginx have been statred. You may need to run:"
echo "podman exec mm2 /usr/bin/python3 -m flask -A mirrormanager2.app db sync"