-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
87 lines (80 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
version: '3'
services:
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
hostname: rabbitmq
volumes:
- /var/lib/rabbitmq
ports:
- '5672:5672'
- '15672:15672'
env_file:
- .env
auth:
build:
context: ./
dockerfile: ./apps/auth/Dockerfile
env_file:
- .env
depends_on:
- rabbitmq
- postgres_auth
volumes:
- .:/usr/src/app # любые изменения в основной директории должны отражаться на состоянии контейнера
- /usr/src/app/node_modules # Эти изменения не будут отражаться
command: npm run start:dev auth # Перезаписывает CMD в Dockerfile. На боевом сервере нужна более специфичнаяя команда
profiles:
build:
context: ./
dockerfile: ./apps/profiles/Dockerfile
env_file:
- .env
depends_on:
- rabbitmq
- postgres_profiles
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
command: npm run start:dev profiles
api:
build:
context: ./
dockerfile: ./apps/api/Dockerfile
ports:
- '4000:5000'
env_file:
- .env
depends_on:
- rabbitmq
- auth
- profiles
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
command: npm run start:dev api
postgres_auth:
image: postgres
env_file:
- .env
ports:
- "5435:5432"
volumes:
- ./db/data_auth:/var/lib/postgresql/data
postgres_profiles:
image: postgres
env_file:
- .env
ports:
- '5434:5432'
volumes:
- ./db/data_profiles:/var/lib/postgresql/data
postgres_admin:
image: dpage/pgadmin4
depends_on:
- postgres_auth
- postgres_profiles
env_file:
- .env
ports:
- '15432:80'