-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (49 loc) · 985 Bytes
/
docker-compose.yml
File metadata and controls
56 lines (49 loc) · 985 Bytes
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
# version: '3.4'
services:
# api:
# build:
# context: .
# dockerfile: ./apps/api/Dockerfile
# target: development
# command: npm run start:dev api
# env_file:
# - ./apps/api/.env
# volumes:
# - .:/app
# - /app/node_modules
# ports:
# - '2000:1000'
# restart: always
# auth:
# build:
# context: .
# dockerfile: ./apps/auth/Dockerfile
# target: development
# command: npm run start:dev auth
# env_file:
# - ./.env
# volumes:
# - .:/app
# - /app/node_modules
# restart: always
mno:
build:
context: .
dockerfile: ./apps/mno/Dockerfile
target: development
command: npm run start:dev mno
env_file:
- ./.env
volumes:
- .:/app
- /app/node_modules
restart: always
ports:
- 2001:3001
volumes:
postdb-data:
driver: local
networks:
default:
external:
name: local-docker-network