-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
64 lines (60 loc) · 1.31 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
version: '3'
services:
redis:
image: 'bitnami/redis:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
ports:
- '6379:6379'
mongodb-primary:
image: 'bitnami/mongodb:3.6'
environment:
- MONGODB_REPLICA_SET_NAME=real-app-chat
- MONGODB_REPLICA_SET_MODE=primary
ports:
- "27018:27017"
mongodb-secondary:
image: 'bitnami/mongodb:3.6'
depends_on:
- mongodb-primary
environment:
- MONGODB_REPLICA_SET_NAME=real-app-chat
- MONGODB_REPLICA_SET_MODE=secondary
- MONGODB_PRIMARY_HOST=mongodb-primary
mongodb-arbiter:
image: 'bitnami/mongodb:3.6'
depends_on:
- mongodb-primary
environment:
- MONGODB_REPLICA_SET_NAME=real-app-chat
- MONGODB_REPLICA_SET_MODE=arbiter
- MONGODB_PRIMARY_HOST=mongodb-primary
postgres:
image: postgres
hostname: postgres
restart: always
# ports:
# - 5432:5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
adminer:
image: hardware/adminer
restart: always
ports:
- 8888:8888
web:
env_file:
- ./production.env
build: .
ports:
- "3000:3000"
depends_on:
- redis
- mongodb-primary
- mongodb-secondary
- mongodb-arbiter
- postgres
volumes:
mongodb_master_data:
driver: local