generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
31 lines (26 loc) · 1020 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
# Run the following to migrate...
# liquibase update --changelog-file ./etor/databaseMigrations/root.yml --url jdbc:postgresql://localhost:5433/intermediary --username intermediary --password 'changeIT!' --label-filter '!azure'
# Run the following to rollback...
# liquibase rollback-count --changelog-file ./etor/databaseMigrations/root.yml --url jdbc:postgresql://localhost:5433/intermediary --username intermediary --password 'changeIT!' --count 2
version: "3.7"
services:
router:
build: .
environment:
REPORT_STREAM_URL_PREFIX: http://host.docker.internal:7071
ports:
- "8080:8080" # default api endpoint port
- "6006:6006" # Java debug port
postgresql:
image: postgres:16
restart: unless-stopped
environment:
POSTGRES_DB: "intermediary"
POSTGRES_PASSWORD: "changeIT!" # pragma: allowlist secret
POSTGRES_USER: "intermediary"
ports:
- 5433:5432
volumes:
- ti_postgres_data:/var/lib/postgresql/data
volumes:
ti_postgres_data: