Files
rate-my-shots/docker-compose.yml
luisdralves 37725c4c7b
All checks were successful
Build and Deploy / build-deploy (push) Successful in 32s
Add build and deploy workflow
2026-05-03 23:18:50 +01:00

14 lines
257 B
YAML

name: rate-my-shots
services:
app:
build: .
ports:
- "${HOST_PORT:-3000}:3000"
volumes:
- "${DATA_DIR:-./data}:/app/data"
env_file: .env
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped