-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
106 lines (95 loc) · 1.84 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version: '3'
services:
arangodb:
image: arangodb
networks:
- backend
environment:
- ARANGO_NO_AUTH=1
expose:
- "8529"
redis:
image: redis
networks:
- backend
expose:
- "6379"
postgres:
image: orchardup/postgresql
networks:
- backend
environment:
- POSTGRESQL_DB=instagram_development
- POSTGRESQL_USER=postgres
- POSTGRESQL_PASS=postgres
expose:
- "5432"
rabbitmq:
image: rabbitmq
networks:
- backend
expose:
- "5672"
http_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.http_server
depends_on:
- rabbitmq
ports:
- "8080:8080"
migrations:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.sql.migrations
users_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.users
depends_on:
- rabbitmq
- migrations
chats_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.chats
depends_on:
- rabbitmq
- migrations
posts_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.posts
depends_on:
- rabbitmq
- migrations
stories_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.stories
depends_on:
- rabbitmq
- migrations
activities_server:
networks:
- backend
build:
context: .
dockerfile: docker-files/Dockerfile.activities
depends_on:
- rabbitmq
- migrations
networks:
backend: