-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
76 lines (74 loc) · 2.15 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
version: '2'
services:
nginx:
restart: always
image: nginx:1.23-alpine
ports:
- 80:80
volumes:
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- static_volume:/app/project/django_static
server:
restart: unless-stopped
build:
context: .
dockerfile: ./docker/project/Dockerfile
entrypoint: /app/docker/project/server-entrypoint.sh
volumes:
- static_volume:/app/project/django_static
expose:
- 8000
environment:
DEBUG: "True"
CELERY_BROKER_URL: "redis://redis:6379/0"
CELERY_RESULT_BACKEND: "redis://redis:6379/0"
DJANGO_DB: postgresql
POSTGRES_HOST: db
POSTGRES_NAME: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
worker:
restart: unless-stopped
build:
context: .
dockerfile: ./docker/project/Dockerfile
entrypoint: /app/docker/project/worker-entrypoint.sh
volumes:
- static_volume:/app/project/django_static
environment:
DEBUG: "True"
CELERY_BROKER_URL: "redis://redis:6379/0"
CELERY_RESULT_BACKEND: "redis://redis:6379/0"
DJANGO_DB: postgresql
POSTGRES_HOST: db
POSTGRES_NAME: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
depends_on:
- server
- redis
redis:
restart: unless-stopped
image: redis:7.0.5-alpine
ports:
- 6379:6379
expose:
- 6379
db:
image: postgres:13.0-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
expose:
- 5432
volumes:
static_volume: {}
postgres_data: {}