mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
20 lines
444 B
YAML
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:
|