-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (43 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
47 lines (43 loc) · 1.06 KB
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
version: '3.8'
networks:
review:
driver: bridge
services:
review-service:
image: wjd4204/review-service:latest
container_name: review-service
ports:
- 8082:8080
environment:
DB_PASSWORD: ${DB_PASSWORD}
DB_URL: ${DB_URL}
DB_USERNAME: ${DB_USERNAME}
EMAIL: ${EMAIL}
EMAIL_PW: ${EMAIL_PW}
JWT_SECRET: ${JWT_SECRET}
CLIENT_ID: ${CLIENT_ID}
GOOGLE_SECRET: ${GOOGLE_SECRET}
S3_ACCESS_KEY: ${S3_ACCESS_KEY}
S3_NAME: ${S3_NAME}
S3_SECRET_KEY: ${S3_SECRET_KEY}
REDIS_HOST: ${REDIS_HOST}
REDIS_PORT: 6379
REDIS_PASSWORD: ${REDIS_PASSWORD}
networks:
- review
customer-service:
image: snhng/customer-service:latest
container_name: customer-service
ports:
- 8083:8080
platform: linux/amd64
environment:
DB_PASSWORD: ${DB_PASSWORD}
DB_USERNAME: ${DB_USERNAME}
DB_HOST: ${DB_HOST}
DB_PORT: ${DB_PORT}
DB_NAME: ${DB_NAME}
ALADIN_KEY: ${ALADIN_KEY}
KOFIC_KEY: ${KOFIC_KEY}
networks:
- review