-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (41 loc) · 963 Bytes
/
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
version: "3.7"
services:
nginx:
image: nginx:latest
container_name: nginx
ports:
- 80:80
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- server
server:
build: .
container_name: server
ports:
- 8000:8000
environment:
- PORT=8000
- HOST=http://localhost
- MONGODB_URI=mongodb://mongodb:27017
- REDIS_URL=redis://redis:6379
depends_on:
- mongodb
- redis
mongodb:
image: mongo:latest
container_name: mongodb
ports:
- 27017:27017
volumes:
- mongodb-data:/data/db
redis:
image: redis:latest
container_name: redis
ports:
- 6379:6379
volumes:
- redis-data:/data/cache
volumes:
mongodb-data:
redis-data: