docker
: Add mergeable config exposing ports for debugging
This commit is contained in:
parent
c3309d737f
commit
59162c8c13
1 changed files with 30 additions and 0 deletions
30
acrate_docker/debug.compose.yml
Normal file
30
acrate_docker/debug.compose.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
# 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
|
Loading…
Reference in a new issue