-
Notifications
You must be signed in to change notification settings - Fork 7
/
production.yml
63 lines (55 loc) · 1.4 KB
/
production.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
version: '3'
services:
django: &django
image: infrascielo/upload
container_name: upload_production_django
platform: linux/x86_64
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
volumes:
- ../scielo/www:/scielo_www
- ./core/media:/app/core/media
ports:
- "8000:8000"
command: /start
# nginx:
# image: nginx:latest
# container_name: upload_nginx
# volumes:
# - ./nginx/conf.d:/etc/nginx/conf.d
# - ./nginx/logs:/var/log/nginx/
# ports:
# - "81:80"
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: upload_production_postgres
container_name: upload_production_postgres
volumes:
- ../scms_data/data_prod:/var/lib/postgresql/data:Z
- ../scms_data/data_prod_backup:/backups:z
env_file:
- ./.envs/.production/.postgres
redis:
image: redis:6
container_name: upload_production_redis
celeryworker:
<<: *django
container_name: upload_production_celeryworker
command: /start-celeryworker
ports: []
celerybeat:
<<: *django
container_name: upload_production_celerybeat
command: /start-celerybeat
ports: []
flower:
<<: *django
container_name: upload_production_flower
command: /start-flower
ports: []