19 lines
357 B
YAML
19 lines
357 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "10332:5000"
|
|
environment:
|
|
- FLASK_ENV=production
|
|
- SECRET_KEY=your-secret-key-change-in-production
|
|
- FLASK_DEBUG=0
|
|
restart: unless-stopped
|
|
networks:
|
|
- default
|
|
- nginx-proxy-manager_default
|
|
|
|
networks:
|
|
nginx-proxy-manager_default:
|
|
external: true |