-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (56 loc) · 1.28 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3.2"
services:
db:
image: mongo
container_name: db
restart: always
ports:
- ${DB_PORT}:27017
volumes:
- ./database-data:/data/db
environment:
MONGO_INITDB_DATABASE: ${DB_NAME}
# MONGO_INITDB_ROOT_USERNAME: ${DB_USER}
# MONGO_INITDB_ROOT_PASSWORD: ${DB_PASS}
mongo-express:
image: mongo-express
container_name: mongo-express-test
restart: always
ports:
- 8081:8081
environment:
# ME_CONFIG_MONGODB_ADMINUSERNAME: root
# ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://db/
backend:
image: api
# volumes:
# - ./backend:/backend
ports:
- ${SERVER_PORT}:${SERVER_PORT}
# command: bash -c "cd /backend && npm i && node app"
depends_on:
- db
frontend:
image: app-web
ports:
- 3001:3000
depends_on:
- backend
# api:
# image: node:latest
# container_name: api
# restart: always
# depends_on:
# - db
# ports:
# - ${SERVER_PORT}:${SERVER_PORT}
# volumes:
# - .:/user/src/app
# working_dir: /usr/src/app
# command: node app.js
# logging:
# driver: "json-file"
# options:
# max-size: "10m"
# max-file: "5"