add docker-compose

This commit is contained in:
2025-09-10 15:19:29 +03:00
parent f1332e00e1
commit 45e14c9536

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
version: "3.9"
services:
launchpad:
build: .
container_name: launchpad
restart: always
environment:
# Flask secrets
- SECRET_KEY=ABZ3EavEwWcJpkpeE1e4CfoFZR4Bgx7E
- ADMIN_USER=admin
- ADMIN_PASS=Inteligent1_eu
- PUBLIC_BASE_URL=https://launchpad.northdanubesoft.eu
# Reverse proxy integration
- VIRTUAL_HOST=launchpad.northdanubesoft.eu
- LETSENCRYPT_HOST=launchpad.northdanubesoft.eu
- VIRTUAL_PORT=5000
volumes:
# persist uploaded images between container rebuilds
- ./uploads:/app/static/uploads
networks:
- reverse-proxy # 👈 use the same network as your nginx-proxy
networks:
reverse-proxy:
external: true