forked from weareasterisk/gavel2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (53 loc) · 1.22 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
version: '2'
services:
postgres:
image: postgres:10.8-alpine
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
restart: on-failure
ports:
- 5432:5432
redis:
image: redis:5.0-alpine
restart: on-failure
ports:
- 6379:6379
# gavel:
# environment:
# - DATABASE_URL=postgres://gavel:gavel@postgres/gavel
# - ADMIN_PASSWORD=admin
# - REDIS_URL=redis://redis/0
# - BASE_URL=localhost
# - EMAIL_FROM=
# - EMAIL_USER=
# - EMAIL_PASSWORD=
# - IGNORE_CONFIG_FILE=true
# - SECRET_KEY=asdasd
# - FLASK_DEBUG=1
# build: .
# ports:
# - "5000:5000"
# depends_on:
# - postgres
# volumes:
# - './gavel:/web/gavel'
# command: bash -c "python initialize.py && /usr/local/bin/gunicorn gavel:app -c workers.py"
# worker:
# build:
# context: .
# dockerfile: Dockerfile
# user: nobody
# environment:
# - REDIS_URL=redis://redis/0
# depends_on:
# - gavel
# - redis
# ports:
# - "5555"
# command: celery -A gavel:celery worker
volumes:
postgres_data: {}