Added Nginx Proxy Manager configuration

This commit is contained in:
Adam Parler 2026-05-18 13:31:45 -04:00
parent 6e66ba22ce
commit 1d2b267127
2 changed files with 58 additions and 0 deletions

View file

@ -10,10 +10,19 @@ else
echo "Container command (Docker/Podman) could not be found!"
fi
if [ -d "nginx" ]; then
cd nginx
echo "Attempting to start nginx container ..."
$PROG compose -f docker-compose.yml up -d
cd ..
fi
# Check if folder exists
if [ -d "forgejo" ]; then
cd forgejo
echo "Attempting to start forgejo container ..."
$PROG compose -f docker-compose.yml up -d
cd ..
fi
echo "Program finished successfully!"