-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.prod.yml
52 lines (50 loc) · 1.07 KB
/
docker-compose.prod.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
version: "3.0"
services:
app:
build:
context: ./app
dockerfile: Dockerfile
image: &img appimg
command: gunicorn factionstats.wsgi:application --bind 0.0.0.0:8000
volumes:
- static_volume:/usr/src/app/staticfiles
- media_volume:/usr/src/app/mediafiles
expose:
- 8000
env_file: ./env
depends_on:
- db
- redis
db:
image: postgres:11.2-alpine
volumes:
- ./data/db:/var/lib/postgresql/data/:Z
- ./tmp/:/tmp/import
ports:
- 5432:5432
env_file: ./env.db
nginx:
build: ./nginx
volumes:
- static_volume:/usr/src/app/staticfiles
- media_volume:/usr/src/app/mediafiles
#ports:
#- 80:80
#- 443:443
depends_on:
- app
redis:
image: redis:latest
expose:
- 6379
worker:
image: *img
command: celery -A factionstats worker --loglevel=warning --concurrency=2 --without-gossip --max-tasks-per-child=90
env_file: ./env
depends_on:
- db
- redis
volumes:
postgres_data:
static_volume:
media_volume: