sailing_forms/docker-compose.yaml
Feiko Wielsma c160446eac Enhance event registration system:
- Update Google Sheets integration to support optional tab names.
- Add functionality to fetch and display public participants.
- Revise event configuration in YAML for clarity and consistency.
- Improve form layout with additional fields for contact information and meal preferences.
- Create a new home page template for event selection.
- Update success page to link back to the participants list.
2025-11-26 17:47:20 +01:00

18 lines
No EOL
399 B
YAML

version: '3.8'
services:
sailing-forms:
build: .
container_name: sailing_forms
restart: unless-stopped
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