sailing_forms/docker-compose.yaml

20 lines
No EOL
426 B
YAML

version: '3.8'
services:
sailing-forms:
build: .
container_name: sailing_forms
restart: unless-stopped
env_file:
- .env
ports:
- "5000:5000"
volumes:
# Mount the config file so you can edit it without rebuilding
- ./events.yaml:/app/events.yaml
# Mount credentials securely
- ./credentials.json:/app/credentials.json
networks:
npm_network:
external: true