-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes
52 lines (50 loc) · 1.39 KB
/
notes
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
version: "3.8"
services:
django:
build: .
container_name: django
restart: always
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/app/
ports:
- "8000:8000"
environment:
- DEBUG=1
- DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
- CELERY_BROKER=redis://redis:6379/0
- CELERY_BACKEND=redis://redis:6379/0
depends_on:
- msdb
- redis
celery:
build: .
command: celery -A MailMaster.celery worker --pool=solo -l info
restart: always
volumes:
- .:/app
environment:
- DEBUG=1
- DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
- CELERY_BROKER=redis://redis:6379/0
- CELERY_BACKEND=redis://redis:6379/0
depends_on:
- django
- redis
msdb:
image: mysql
container_name: msdb
restart: unless-stopped
environment:
- MYSQL_DATABASE=mailmaster
- MYSQL_USER=root
- MYSQL_ROOT_PASSWORD=7592978136
- MYSQL_PASSWORD=7592978136
expose:
- 3306
volumes:
- msdata:/var/lib/mysql/data/
redis:
image: "redis:alpine"
volumes:
msdata: