-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
84 lines (84 loc) · 1.86 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
version: "3.7"
volumes:
postgres:
redis:
networks:
secateur:
services:
app:
build: .
image: secateur
env_file:
- .env
environment:
- DEBUG=True
command: sh -c "./manage.py migrate && ./manage.py runserver 0.0.0.0:5000"
ports:
- "5000:5000"
depends_on:
- redis
- postgres
networks:
secateur:
volumes:
- .:/app:cached
init: true
celery:
build: .
image: secateur
env_file:
- ./.env
environment:
- DJANGO_SETTINGS_MODULE=secateur.settings
#command: watchmedo auto-restart --recursive --pattern="*.py" --directory="." -- celery -A secateur worker -l info
command: celery -A secateur worker --queues celery,blocker --loglevel debug --pool gevent
depends_on:
- redis
- postgres
networks:
secateur:
volumes:
- .:/app:cached
init: true
read_only: true
# tests:
# build: .
# image: secateur
# env_file:
# - ./.env
# environment:
# - DJANGO_SETTINGS_MODULE=secateur.settings
# command: watchmedo auto-restart --recursive --pattern="*.py" --directory="." -- pytest --cov-report=term-missing:skip-covered --cov=secateur
# depends_on:
# - redis
# - postgres
# networks:
# secateur:
# volumes:
# - .:/app:cached
# init: true
# read_only: true
postgres:
image: postgres:14
env_file:
- ./.env
volumes:
- postgres:/var/lib/postgresql/data
networks:
secateur:
init: true
read_only: true
tmpfs:
- /run/
- /tmp/
environment:
# This is NEVER OKAY in a production setup. But it's a reasonable compromise for a contained postgres on a dev machine, I supppppose
- POSTGRES_HOST_AUTH_METHOD=trust
redis:
image: redis
volumes:
- redis:/data
networks:
secateur:
init: true
read_only: true