37 lines
729 B
Text
37 lines
729 B
Text
version: "2.4"
|
|
|
|
services:
|
|
mymusiclibrary-www:
|
|
container_name: mymusiclibrary-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:
|
|
- mymusiclibrary-db
|
|
environment:
|
|
NODE_ENV: ${NODE_ENV}
|
|
DISCOGS_TOKEN: ${DISCOGS_TOKEN}
|
|
networks:
|
|
- mymusiclibrary
|
|
mymusiclibrary-db:
|
|
container_name: mymusiclibrary-db
|
|
image: mongo:latest
|
|
restart: always
|
|
ports:
|
|
- 27617:27017
|
|
networks:
|
|
- mymusiclibrary
|
|
|
|
networks:
|
|
mymusiclibrary:
|
|
driver: bridge
|