-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdocker-compose.yml
54 lines (49 loc) · 954 Bytes
/
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
db:
image: postgres
data:
image: cogniteev/echo
volumes:
- /var/www/assets
uwsgi:
restart: always
image: vanessa/expfactory
volumes_from:
- data
volumes:
- .:/code
- ./static:/var/www/static
links:
- redis
- db
nginx:
restart: always
image: nginx
ports:
- "80:80"
- "443:443"
volumes:
- ./compose/nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./uwsgi_params.par:/etc/nginx/uwsgi_params.par:ro
- ./compose/nginx/ssl/certs:/etc/ssl/certs:ro
- ./compose/nginx/acme-challenge:/var/www/.well-known/acme-challenge:ro
- ./compose/nginx/ssl/private:/etc/ssl/private:ro
volumes_from:
- uwsgi
- data
links:
- uwsgi
- db
redis:
restart: always
image: redis
worker:
image: vanessa/expfactory
command: celery worker -A expdj.celery -Q default -n default@%h
volumes:
- .:/code
volumes_from:
- uwsgi
- data
links:
- redis
- db