14 lines
387 B
YAML
14 lines
387 B
YAML
# docker-compose.yaml
|
|
version: '3.8'
|
|
|
|
services:
|
|
fuego-app:
|
|
build: .
|
|
env_file: .env # your DB_HOST, DB_USER, DB_PASSWORD, DB_NAME, SLACK_WEBHOOK_URL, etc.
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/usr/src/app # live code reload; remove in prod if undesired
|
|
restart: unless-stopped
|
|
# no depends_on here since the DB lives elsewhere
|