This repository has been archived by the owner on Apr 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
docker-compose-prod.yml
executable file
·116 lines (107 loc) · 2.69 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
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
116
version: '3.2'
services:
users-service:
container_name: users-service
build:
context: ./services/users
dockerfile: Dockerfile-prod
expose:
- '5000'
environment:
- SECRET_KEY=${SECRET_KEY}
- APP_SETTINGS=project.config.ProductionConfig
- DATABASE_URL=postgres://postgres:postgres@users-db:5432/users_prod
- DATABASE_TEST_URL=postgres://postgres:postgres@users-db:5432/users_test
depends_on:
- users-db
links:
- users-db
users-db:
container_name: users-db
build:
context: ./services/users/project/db
dockerfile: Dockerfile
expose:
- 5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
events-service:
container_name: events-service
build:
context: ./services/events
dockerfile: Dockerfile-prod
volumes:
- './services/events:/usr/src/app'
ports:
- 6000:6000
environment:
- SECRET_KEY=my_precious
- APP_SETTINGS=project.config.ProductionConfig
- DATABASE_URL=postgres://postgres:postgres@events-db:5432/events_prod
- DATABASE_TEST_URL=postgres://postgres:postgres@events-db:5432/events_test
- NEW_RELIC_ENVIRONMENT = 'production'
- NEW_RELIC_APP_NAME = 'Muxer (Production)'
- NEW_RELIC_LICENSE_KEY
depends_on:
- events-db
links:
- events-db
events-db:
container_name: events-db
build:
context: ./services/events/project/db
dockerfile: Dockerfile
expose:
- 5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
nginx:
container_name: nginx
build: ./services/nginx
restart: always
ports:
- 80:80
depends_on:
- users-service
- client
links:
- users-service
client:
container_name: client
build:
context: ./services/client
dockerfile: Dockerfile-prod
args:
- NODE_ENV=production
- REACT_APP_GOOGLE_ANALYTICS_ID=UA-123052755-3
- REACT_APP_USERS_SERVICE_URL=${REACT_APP_USERS_SERVICE_URL}
- REACT_APP_EVENTS_SERVICE_URL=${REACT_APP_EVENTS_SERVICE_URL}
ports:
- '3007:3000'
depends_on:
- users-service
- events-service
links:
- users-service
- events-service
client-test:
container_name: client-test
build:
context: ./services/client
dockerfile: Dockerfile-stage
environment:
- NODE_ENV=production
- CI=${CI:-false}
swagger:
container_name: swagger
build:
context: ./services/swagger
dockerfile: Dockerfile-prod
ports:
- '3008:8080'
environment:
- URL=swagger.json
depends_on:
- users-service