Files
website/docker-compose.yml
T
luis d7787fee76
Build and Deploy / build-deploy (push) Successful in 33s
Integrate with rate-my-shots
2026-06-10 13:31:09 +01:00

16 lines
283 B
YAML

name: website
services:
app:
build:
context: .
args:
RATE_MY_SHOTS_URL: ${RATE_MY_SHOTS_URL}
restart: unless-stopped
ports:
- "${HOST_PORT}:3000"
environment:
DATA_DIR: /app/data
volumes:
- "${DATA_DIR:-./data}:/app/data"