docker: Add mergeable config exposing ports for debugging

This commit is contained in:
Steffo 2024-12-16 02:29:05 +01:00
parent c3309d737f
commit 59162c8c13
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View 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