forked from singularityhub/sregistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 1014 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
55
56
57
58
db:
image: postgres
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
uwsgi:
restart: always
image: quay.io/vanessa/sregistry
volumes:
- .:/code
- ./static:/var/www/static
- ./images:/var/www/images
# uncomment for PAM auth
#- /etc/passwd:/etc/passwd
#- /etc/shadow:/etc/shadow
links:
- redis
- db
nginx:
restart: always
image: quay.io/vanessa/sregistry_nginx
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./uwsgi_params.par:/etc/nginx/uwsgi_params.par:ro
volumes_from:
- uwsgi
links:
- uwsgi
- db
redis:
restart: always
image: redis:latest
scheduler:
image: quay.io/vanessa/sregistry
command: python /code/manage.py rqscheduler
volumes:
- .:/code
volumes_from:
- uwsgi
links:
- redis
- db
worker:
image: quay.io/vanessa/sregistry
command: python /code/manage.py rqworker default
volumes:
- .:/code
volumes_from:
- uwsgi
links:
- redis
- db