forked from dbroqua/MusicTopus
37 lines
677 B
YAML
37 lines
677 B
YAML
|
version: "2.4"
|
||
|
|
||
|
services:
|
||
|
nodecdtheque-www:
|
||
|
container_name: nodecdtheque-www
|
||
|
image: "node:16"
|
||
|
restart: always
|
||
|
user: "node"
|
||
|
working_dir: /home/node/app
|
||
|
command: >
|
||
|
bash -c "
|
||
|
yarn install &&
|
||
|
yarn watch"
|
||
|
volumes:
|
||
|
- ./:/home/node/app
|
||
|
- /home/node/node_modules
|
||
|
ports:
|
||
|
- 3001:3001
|
||
|
depends_on:
|
||
|
- nodecdtheque-db
|
||
|
environment:
|
||
|
NODE_ENV: "development"
|
||
|
networks:
|
||
|
- nodecdtheque
|
||
|
nodecdtheque-db:
|
||
|
container_name: nodecdtheque-db
|
||
|
image: mongo:latest
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 27617:27017
|
||
|
networks:
|
||
|
- nodecdtheque
|
||
|
|
||
|
networks:
|
||
|
nodecdtheque:
|
||
|
driver: bridge
|