-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
89 lines (81 loc) · 2.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
version: "3.9"
services:
postgres:
container_name: postgres
image: postgres:alpine
volumes:
- ./postgre/data:/var/lib/postgresql/data
expose:
- 5432
env_file:
- ./envs/dev/postgre/.env
restart: always
redis:
container_name: redis
image: redis
restart: always
ports:
- 5432
command: redis-server --save 60 1 --loglevel warning
backend:
build:
context: .
dockerfile: dockerfiles/dev/django/Dockerfile
container_name: backend
command: sh -c "python manage.py check_database && \
yes | python manage.py makemigrations && \
yes | python manage.py migrate && \
python manage.py runserver 0.0.0.0:8000"
volumes:
- ./core:/usr/src/app
ports:
- 8000:8000
env_file:
- ./envs/dev/django/.env
restart: always
depends_on:
- postgres
celery_worker:
build:
context: .
dockerfile: dockerfiles/dev/django/Dockerfile
container_name: celery_worker
command: celery -A core worker --loglevel=info
volumes:
- ./core:/usr/src/app- ./core:/app
depends_on:
- redis
- backend
celery_beat:
build:
context: .
dockerfile: dockerfiles/dev/django/Dockerfile
command: celery -A core beat -l info
container_name: celery_beat
volumes:
- ./core:/usr/src/app
env_file:
- envs/dev/django/.env
environment:
- FILE_DEBUGGER=False
depends_on:
- redis
- backend
- celery_worker
smtp4dev:
image: rnwood/smtp4dev:v3
restart: always
ports:
# Change the number before : to the port the web interface should be accessible on
- '5000:80'
# Change the number before : to the port the SMTP server should be accessible on
- '25:25'
# Change the number before : to the port the IMAP server should be accessible on
- '143:143'
volumes:
# This is where smtp4dev stores the database..
- smtp4dev-data:/smtp4dev
environment:
- ServerOptions__HostName=smtp4dev
volumes:
smtp4dev-data: