-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
65 lines (63 loc) · 1.16 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
version: "3.8"
volumes:
db:
caddy-config:
caddy-data:
services:
db:
image: postgres:14
init: true
env_file:
- .env.dev
volumes:
- db:/var/lib/postgresql/data
redis:
image: redis:7-alpine
app:
init: true
depends_on:
- db
- redis
volumes:
- .:/app
build:
context: .
target: dev-runtime
env_file:
- .env.dev
environment:
HUEY_SIMULATE: "false"
AUTO_MIGRATE_AND_INSTALL: "true"
worker:
init: true
depends_on:
- db
- redis
- app
volumes:
- .:/app
build:
context: .
target: dev-runtime
env_file:
- .env.dev
environment:
HUEY_SIMULATE: "false"
AUTO_MIGRATE_AND_INSTALL: "false"
command: poetry run python manage.py run_huey
caddy:
image: "caddy:2.4.6-alpine"
restart: unless-stopped
env_file:
- .env.dev
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile # configuration
- caddy-config:/config # configuation autosaves
- caddy-data:/data # saving certificates
ports:
- "8888:8888"
depends_on:
- db
- redis
- app
- worker