-
Notifications
You must be signed in to change notification settings - Fork 1
/
production.yml
115 lines (104 loc) · 2.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
version: '3'
services:
django: &django
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: scielo_usage_production_django
platform: linux/x86_64
depends_on:
- redis
- postgres
- mailhog
- solr
- pgbouncer
links:
- pgbouncer
- solr
volumes:
- .:/app:z
- ../scms_data/scielo_usage/data/logs:/data/logs
- ../scms_data/scielo_usage/data/supplies:/data/supplies
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /start
pgbouncer:
image: edoburu/pgbouncer:1.14.0
restart: always
environment:
- DATABASE_URL=postgres://GVRFlLmcCNfGLhsFvSnCioYOPJPYpyfj:DAkWfpsnPHcAxMeQk2QmPOIZuz4BXG5qGFWi2hCCQE6kvndJHTuzz8SjnxOJY5qj@postgres/scielo_usage
- MAX_CLIENT_CONN=100
ports:
- 6434:5432
depends_on:
- postgres
links:
- postgres
solr:
image: solr:9.3
restart: always
ports:
- "8983:8983"
volumes:
- ./index:/var/solr
environment:
- SOLR_JAVA_MEM=-Xms512m -Xmx512m
- SOLR_HEAP=512m
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: scielo_usage_production_postgres
volumes:
- ../scms_data/scielo_usage/postgresql:/var/lib/postgresql/data:Z
- ../scms_data/scielo_usage/postgresql_backup:/backups:z
ports:
- "5432:5432"
env_file:
- ./.envs/.production/.postgres
adminer:
image: adminer
container_name: scielo_usage_production_adminer
ports:
- "8089:8080"
mailhog:
image: mailhog/mailhog:v1.0.0
container_name: scielo_usage_production_mailhog
ports:
- "8029:8025"
redis:
image: redis:6
ports:
- "6379:6379"
celeryworker:
<<: *django
image: scielo_usage_production_celeryworker
depends_on:
- redis
- postgres
command: /start-celeryworker
celerybeat:
<<: *django
image: scielo_usage_production_celerybeat
depends_on:
- redis
- postgres
command: /start-celerybeat
flower:
<<: *django
image: scielo_usage_production_flower
command: /start-flower
traefik:
build:
context: .
dockerfile: ./compose/production/traefik/Dockerfile
image: scielo_usage_production_traefik
depends_on:
- django
volumes:
- ../scms_data/scielo_usage/traefik:/etc/traefik/acme:z
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"
- "0.0.0.0:5555:5555"