-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (55 loc) · 1.35 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
version: "3"
services:
redis:
container_name: redis
image: redis
ports:
- "6379:6379"
restart: always
command: redis-server --save 60 1 --loglevel warning
backend:
build: .
container_name: blogbackend
command: python manage.py runserver 0.0.0.0:8000
volumes:
- ./core:/app
ports:
- "8000:8000"
environment:
- SECRET_KEY=django-insecure-#!39atn!hu7kggiq&&1lfo1+hjhw!0=9_f0uuxv%0wsipzk@i0
- DEBUG=True
depends_on:
- redis
worker:
build: .
command: celery -A core worker --loglevel=info
volumes:
- ./core:/app
depends_on:
- redis
- backend
smtp4dev:
image: rnwood/smtp4dev:v3
restart: always
ports:
- '5000:80'
- '25:25'
- '143:143'
volumes:
- smtp4dev-data:/smtp4dev
environment:
- ServerOptions__HostName=smtp4dev
master:
image: locustio/locust
ports:
- "8089:8089"
volumes:
- ./core/locust:/mnt/locust
command: -f /mnt/locust/locustfile.py --master -H http://blogbackend:8000
worker1:
image: locustio/locust
volumes:
- ./core/locust:/mnt/locust
command: -f /mnt/locust/locustfile.py --worker --master-host master
volumes:
smtp4dev-data: