31 lines
587 B
YAML
31 lines
587 B
YAML
|
# Docker Compose file to be merged with compose.yml to expose service ports to localhost for debugging purposes
|
||
|
|
||
|
services:
|
||
|
ingress:
|
||
|
ports:
|
||
|
- protocol: "tcp"
|
||
|
host_ip: "127.0.0.1"
|
||
|
target: 30000
|
||
|
published: 2019
|
||
|
|
||
|
database:
|
||
|
ports:
|
||
|
- protocol: "tcp"
|
||
|
host_ip: "127.0.0.1"
|
||
|
target: 30001
|
||
|
published: 5432
|
||
|
|
||
|
rdserver:
|
||
|
ports:
|
||
|
- protocol: "tcp"
|
||
|
host_ip: "127.0.0.1"
|
||
|
target: 30002
|
||
|
published: 80
|
||
|
|
||
|
apub_inbox:
|
||
|
ports:
|
||
|
- protocol: "tcp"
|
||
|
host_ip: "127.0.0.1"
|
||
|
target: 30003
|
||
|
published: 80
|