-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.development.yaml
118 lines (111 loc) · 2.94 KB
/
docker-compose.development.yaml
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
services:
nginx:
build:
context: .
dockerfile: nginx/Dockerfile
container_name: nginx
depends_on:
- web
- realtime
restart: always
ports:
- '80:80'
- '443:443'
networks:
- reverse-proxy
- frontend-backend
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./certbot/conf:/etc/letsencrypt
- ./certbot/www:/var/www/certbot
certbot:
image: certbot/certbot:latest
volumes:
- ./certbot/conf:/etc/letsencrypt
- ./certbot/www:/var/www/certbot
networks:
- reverse-proxy
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
web:
build:
context: ./apps/voom-web
dockerfile: docker/development/Dockerfile
depends_on:
# - mongodb-primary
# - mongodb-secondary
# - mongodb-arbiter
- realtime
image: web
volumes:
- ./apps/voom-web:/usr/src/app/web
- /app/node_modules
ports:
- '3000:3000'
networks:
- reverse-proxy
- frontend-backend
realtime:
build:
context: .
dockerfile: ./apps/realtime/Dockerfile
target: development
image: realtime
command: npm run start:dev realtime
env_file:
- ./apps/realtime/.env.development
# depends_on:
# - mongodb-primary
# - mongodb-secondary
# - mongodb-arbiter
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- '3001:3001'
networks:
- frontend-backend
# - backend-mongo
# mongodb-primary:
# image: docker.io/bitnami/mongodb:5.0
# environment:
# - MONGODB_ADVERTISED_HOSTNAME=mongodb-primary
# - MONGODB_REPLICA_SET_MODE=primary
# - MONGODB_ROOT_PASSWORD=password123
# - MONGODB_REPLICA_SET_KEY=replicasetkey123
# volumes:
# - 'mongodb_master_data:/bitnami/mongodb'
# ports:
# - '27017:27017'
# networks:
# - backend-mongo
# mongodb-secondary:
# image: docker.io/bitnami/mongodb:5.0
# depends_on:
# - mongodb-primary
# environment:
# - MONGODB_ADVERTISED_HOSTNAME=mongodb-secondary
# - MONGODB_REPLICA_SET_MODE=secondary
# - MONGODB_INITIAL_PRIMARY_HOST=mongodb-primary
# - MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD=password123
# - MONGODB_REPLICA_SET_KEY=replicasetkey123
# networks:
# - backend-mongo
# mongodb-arbiter:
# image: docker.io/bitnami/mongodb:5.0
# depends_on:
# - mongodb-primary
# environment:
# - MONGODB_ADVERTISED_HOSTNAME=mongodb-arbiter
# - MONGODB_REPLICA_SET_MODE=arbiter
# - MONGODB_INITIAL_PRIMARY_HOST=mongodb-primary
# - MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD=password123
# - MONGODB_REPLICA_SET_KEY=replicasetkey123
# networks:
# - backend-mongo
# volumes:
# mongodb_master_data:
# driver: local
networks:
reverse-proxy:
frontend-backend:
backend-mongo: