-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
55 lines (51 loc) · 980 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
55
version: "3.7"
services:
db:
image: "postgres:11"
environment:
- "POSTGRES_HOST_AUTH_METHOD=trust"
volumes:
- postgres_data:/var/lib/postgresql/data/
web: &web
build:
context: .
dockerfile: ./compose/Dockerfile
command: /code/start
ports:
- "8000:8000"
volumes:
- static_volume:/code/staticfiles
- media_volume:/code/mediafiles
env_file:
- ./.env.dev
depends_on:
- db
nginx:
build: ./nginx
restart: always
volumes:
- static_volume:/code/staticfiles
- media_volume:/code/mediafiles
ports:
- 1337:80
depends_on:
- web
redis:
image: redis
celery: &celery
<<: *web
ports: [ ]
expose: [ ]
depends_on:
- db
- redis
- web
entrypoint: [ ]
command: /code/start-celery
celery_beat:
<<: *celery
command: /code/start-celery-beat
volumes:
postgres_data:
static_volume:
media_volume: