This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/docker-compose.yml

15 lines
289 B
YAML
Raw Normal View History

2018-10-03 10:03:20 +00:00
version: "2"
services:
fftcg:
build: .
command: "yarn debug"
2018-10-03 10:03:20 +00:00
restart: "no"
volumes:
- "${PWD}/src:/app/src"
- "${PWD}/views:/app/views:ro"
2018-12-03 13:27:10 +00:00
- "${PWD}/public_html:/app/public_html"
2018-12-14 06:03:03 +00:00
# - "${PWD}/fftcg.db:/app/fftcg.db"
2018-10-03 10:03:20 +00:00
ports:
2018-12-07 09:38:46 +00:00
- "3000:3000"