-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
84 lines (73 loc) · 1.54 KB
/
docker-compose.dev.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
version: '3.7'
services:
redis:
restart: unless-stopped
container_name: redis
image: redis:latest
ports:
- "6379:6379"
networks:
- django_template
db:
image: postgres
environment:
- POSTGRES_NAME=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
# POSTGRES_MULTIPLE_DATABASES: sentry,myproject
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
ports:
- "5432:5432"
networks:
- django_template
backend:
container_name: backend
build: ./backend
env_file:
- ./backend/.env.dev
volumes:
- ./backend:/backend
entrypoint: /backend/entrypoint.dev.sh
depends_on:
- redis
- db
ports:
- "8000:8000"
networks:
- django_template
dramatiq_worker:
container_name: dramatiq_worker
build: ./backend
command: python manage.py rundramatiq
env_file:
- ./backend/.env.dev
volumes:
- ./backend:/backend
depends_on:
- redis
- backend
- db
restart: unless-stopped
networks:
- django_template
caddy:
container_name: caddy_web_server
build:
context: ./caddy_server
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./caddy_server/Caddyfile:/etc/caddy/Caddyfile
- ./backend/staticfiles:/var/www/html/static
networks:
- django_template
volumes:
postgres_data:
networks:
django_template:
driver: bridge