-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (49 loc) · 1004 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
47
48
49
50
51
52
53
54
version: '3'
services:
monitor:
build: .
container_name: django-monitor-uvicorn
volumes:
- static_volume:/var/www/app/staticfiles
restart: always
expose:
- 8000
env_file:
- .env
links:
- postgres
- redis
depends_on:
- postgres
- redis
postgres:
image: postgres
container_name: django-monitor-postgres
restart: always
volumes:
- postgres_data:/var/lib/postgresql/data/
expose:
- 5432
environment:
- POSTGRES_DB=$POSTGRES_NAME
- POSTGRES_USER=$POSTGRES_USER
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD
redis:
image: redis
restart: always
container_name: django-monitor-redis
nginx:
build: ./nginx
container_name: django-monitor-nginx
restart: always
volumes:
- static_volume:/var/www/app/staticfiles
ports:
- $PORT:80
links:
- monitor
depends_on:
- monitor
volumes:
postgres_data:
static_volume: