compose: añadir dummybot_expose automático con socat :18080
This commit is contained in:
parent
c2e35112ea
commit
1cd9dc468c
@ -44,10 +44,27 @@ services:
|
||||
networks:
|
||||
- laravel
|
||||
|
||||
# ─────────────────────────────────────────────────────────────
|
||||
# Túnel socat para exponer el backend en :18080 sin TLS.
|
||||
# Útil mientras el proxy-manager no tiene host para dummybot.
|
||||
# Si ya tienes HTTPS, este contenedor es opcional.
|
||||
# ─────────────────────────────────────────────────────────────
|
||||
expose:
|
||||
image: alpine/socat
|
||||
container_name: dummybot_expose
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "18080:80"
|
||||
command: TCP-LISTEN:80,fork,reuseaddr TCP:dummybot_web:80
|
||||
networks:
|
||||
- proxy
|
||||
depends_on:
|
||||
- webserver
|
||||
|
||||
volumes:
|
||||
dbdata:
|
||||
|
||||
networks:
|
||||
laravel:
|
||||
proxy:
|
||||
external: true
|
||||
external: true
|
||||
Loading…
Reference in New Issue
Block a user