14 lines
287 B
YAML
14 lines
287 B
YAML
version: "2"
|
|
|
|
services:
|
|
fftcg:
|
|
build: .
|
|
command: "yarn debug"
|
|
restart: "no"
|
|
volumes:
|
|
- "${PWD}/src:/app/src"
|
|
- "${PWD}/views:/app/views:ro"
|
|
- "${PWD}/public_html:/app/public_html"
|
|
- "${PWD}/fftcg.db:/app/fftcg.db"
|
|
ports:
|
|
- "3000:3000"
|