-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 816 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 816 Bytes
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
version: "3.9"
services:
redis:
container_name: redis
image: redis
restart: always
ports:
- "6379:6379"
command: redis-server --save 60 1 --loglevel warning
backend:
build: .
container_name: backend
command: python manage.py runserver 0.0.0.0:8000
volumes:
- ./core:/app
ports:
- "8000:8000"
environment:
- SECRET_KEY=test_secret_key
- DEBUG=True
depends_on:
- redis
celery:
build: .
container_name: celery
command: celery -A core worker -l info
volumes:
- ./core:/app
depends_on:
- redis
- backend
beat:
build: .
container_name: beat
command: celery -A core beat -l info
volumes:
- ./core:/app
depends_on:
- redis
- celery
- backend