18 lines
360 B
YAML
18 lines
360 B
YAML
version: "2"
|
|
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
restart: "no"
|
|
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
target: devStage
|
|
restart: "no"
|
|
volumes:
|
|
- "${PWD}/backend/inc:/app/inc:ro"
|
|
- "${PWD}/backend/server.coffee:/app/server.coffee:ro"
|
|
# - "${PWD}/backend/fftcg.db:/app/fftcg.db"
|
|
ports:
|
|
- "3000:3000"
|