# Production compose file for org-stack integration # This will be added to ~/org-stack/compose.yml on the server services: parking: build: ./parking container_name: parking restart: unless-stopped volumes: - parking_data:/app/data environment: - SECRET_KEY=${PARKING_SECRET_KEY} - DATABASE_PATH=/app/data/parking.db - AUTHELIA_ENABLED=true - ALLOWED_ORIGINS=https://parking.rocketscale.it # SMTP (shared with other services) - SMTP_HOST=${SMTP_HOST:-} - SMTP_PORT=${SMTP_PORT:-587} - SMTP_USER=${SMTP_USER:-} - SMTP_PASSWORD=${SMTP_PASSWORD:-} - SMTP_FROM=${SMTP_FROM:-} networks: - org-network depends_on: - authelia volumes: parking_data: networks: org-network: external: true