forked from bcgov/sbc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (36 loc) · 919 Bytes
/
docker-compose.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
version: "3.1"
services:
####################### AUTH Database Definition #######################
authdb:
image: postgres:11
restart: always
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
ports:
- "54330:5432"
volumes:
- db-data:/var/lib/postgresql/data0
####################### AUTH Unit Test Database Definition #######################
authdb-test:
image: postgres:11
restart: always
environment:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
ports:
- "54331:5432"
volumes:
- db-data:/var/lib/postgresql/data1
#################### Jaeger Tracing Service Definition ####################
jaeger:
image: jaegertracing/all-in-one
restart: always
ports:
- "16686:16686"
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
volumes:
db-data:
driver: local