-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yml
65 lines (65 loc) · 1.53 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
---
x-logging: &default-logging
driver: json-file
options:
max-file: "5"
max-size: 1m
x-deploy: &default-deploy
update_config:
failure_action: rollback
order: start-first
parallelism: 1
networks:
backnet:
services:
http:
command: ["gunicorn"]
deploy: *default-deploy
healthcheck:
test: ["CMD", "curl", "--fail", "-LSs", "http://localhost:8000/health/"]
interval: 15s
retries: 5
start_period: 120s
timeout: 5s
image: jbei/edd-core:latest
logging: *default-logging
networks:
- backnet
volumes:
- edd_attachments:/var/www/uploads
- edd_staticfiles:/var/www/static
websocket:
command: ["daphne"]
deploy: *default-deploy
healthcheck:
test: ["CMD", "curl", "--fail", "-LSs", "http://localhost:8000/health/"]
interval: 15s
retries: 5
start_period: 120s
timeout: 5s
image: jbei/edd-core:latest
logging: *default-logging
networks:
- backnet
volumes:
- edd_attachments:/var/www/uploads
- edd_staticfiles:/var/www/static
worker:
command: ["celery"]
deploy: *default-deploy
healthcheck:
test: ["CMD", "celery", "-A", "edd", "--workdir", "/code", "inspect", "ping"]
interval: 1m
retries: 3
start_period: 120s
timeout: 20s
image: jbei/edd-core:latest
logging: *default-logging
networks:
- backnet
volumes:
- edd_attachments:/var/www/uploads
- edd_staticfiles:/var/www/static
volumes:
edd_attachments:
edd_staticfiles: