puffinOffsetCalculator/docker-compose.yml

18 lines
421 B
YAML
Raw Normal View History

2025-04-25 01:09:44 +02:00
version: '3.8'
services:
puffin-calculator:
2025-04-25 01:49:20 +02:00
build: .
2025-04-25 01:09:44 +02:00
container_name: puffin-calculator
ports:
- "8080:80"
restart: unless-stopped
environment:
- NODE_ENV=production
2025-04-25 01:39:55 +02:00
# Include any environment variables from .env file
- REACT_APP_API_KEY=${REACT_APP_API_KEY}
- REACT_APP_API_URL=${REACT_APP_API_URL}
2025-04-25 01:09:44 +02:00
volumes:
# Persist Nginx logs
- ./logs:/var/log/nginx