townsquare/docker-compose.template.yml
2023-11-10 22:57:42 +00:00

20 lines
444 B
YAML

version: "3.5"
services:
blood_on_the_clocktower:
container_name: frontend
build: "${PROJECT_LOCAL_PATH}"
restart: unless-stopped
volumes:
- "${SSH_KEYS}:/root/.ssh"
- botc_front:/app/townsquare
environment:
NODE_ENV: development
ports:
- "${NODE_PORT}:8080"
working_dir: /app/townsquare
logging:
driver: "json-file"
options:
max-size: "200k"
volumes:
botc_front: