-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdev-tools.yml
More file actions
44 lines (44 loc) · 1.04 KB
/
dev-tools.yml
File metadata and controls
44 lines (44 loc) · 1.04 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
services:
pgadmin:
image: dpage/pgadmin4
user: pgadmin
env_file:
- .env
volumes:
# IMPORTANT
# Named volumes ensure portability across the host plaforms used to
# create and run development containers.
- capxmlpgadmin:/var/lib/pgadmin
ports:
- "127.0.0.1:8080:80"
networks:
ls:
liquibase:
image: liquibase/liquibase
depends_on:
capxmldb:
condition: service_healthy
env_file:
- .env
volumes:
# IMPORTANT
# Named volumes ensure portability across the host plaforms used to
# create and run development containers.
- capxmlliquibase:/capxmldb
networks:
ls:
command: /bin/sh -c "lpm add postgresql && liquibase update"
mock-api:
image: wiremock/wiremock:latest
ports:
- "8081:8080"
volumes:
- ./wiremock/mappings:/home/wiremock/mappings
command: ["--global-response-templating", "--verbose"]
networks:
ls:
volumes:
capxmlpgadmin:
external: true
capxmlliquibase:
external: true