-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
168 lines (165 loc) · 3.51 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
services:
auth:
image: ghcr.io/jschmidt92/org-sog-hq-auth:1696034941
container_name: auth
command: npm run start:dev
env_file:
- ./auth/.env
depends_on:
- mongodb
- discovery
# volumes:
# - ./auth/:/app
# - /auth/node_modules
expose:
- 3001
ports:
- '3001:3001'
networks:
- microservices
restart: unless-stopped
blog:
image: ghcr.io/jschmidt92/org-sog-hq-blog:1696034942
container_name: blog
command: npm run start:dev
env_file:
- ./blog/.env
depends_on:
- mongodb
- auth
- discovery
# volumes:
# - ./blog:/app
# - /blog/node_modules
expose:
- 3002
ports:
- '3002:3002'
networks:
- microservices
restart: unless-stopped
character:
image: ghcr.io/jschmidt92/org-sog-hq-character:1696034942
container_name: character
command: npm run start:dev
env_file:
- ./character/.env
depends_on:
- discovery
# volumes:
# - ./character:/app
# - /character/node_modules
expose:
- 3003
ports:
- '3003:3003'
networks:
- microservices
restart: unless-stopped
discovery:
image: ghcr.io/jschmidt92/org-sog-hq-discovery:1696034943
container_name: discovery
command: npm run start:dev
env_file:
- ./discovery/.env
# volumes:
# - ./discovery/:/app
# - /discovery/node_modules
expose:
- 3000
ports:
- '3000:3000'
networks:
- microservices
restart: unless-stopped
gateway:
image: ghcr.io/jschmidt92/org-sog-hq-gateway:1696034942
container_name: gateway
command: npm run start:dev
env_file:
- ./gateway/.env
depends_on:
- auth
- blog
- character
- discovery
# volumes:
# - ./gateway:/app
# - /gateway/node_modules
expose:
- 80
ports:
- '80:80'
networks:
- microservices
restart: unless-stopped
rss:
image: ghcr.io/jschmidt92/org-sog-hq-rss:1696034943
container_name: rss
command: npm run start:dev
env_file:
- ./rss/.env
depends_on:
- mongodb
- discovery
volumes:
- ./rss:/app
- /rss/node_modules
expose:
- 3004
ports:
- '3004:3004'
networks:
- microservices
restart: unless-stopped
arma-redis:
image: redis:latest
container_name: arma-redis
command: --requirepass ${REDIS_PASSWORD}
expose:
- 6379
ports:
- '6379:6379'
env_file: .env
networks:
- microservices
restart: unless-stopped
mongodb:
image: mongo:latest
container_name: mongodb
environment:
- MONGO_INITDB_ROOT_USERNAME=${MONGODB_USER}
- MONGO_INITDB_ROOT_PASSWORD=${MONGODB_PASSWORD}
volumes:
- 'mongodb-master_data:/mongodb'
expose:
- 27017
ports:
- '27017:27017'
networks:
- microservices
restart: unless-stopped
mongodb-express:
image: mongo-express:latest
container_name: mongodb-express
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=${MONGODB_USER}
- ME_CONFIG_MONGODB_ADMINPASSWORD=${MONGODB_PASSWORD}
- ME_CONFIG_MONGODB_URL=mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@mongodb:27017/
expose:
- 8081
ports:
- '8081:8081'
links:
- mongodb
depends_on:
- mongodb
networks:
- microservices
restart: unless-stopped
networks:
microservices:
driver: bridge
volumes:
mongodb-master_data:
driver: local