Hi everyone,
I do have caddy server running as reverse proxy as docker container with an external network:
services:
caddy:
image: caddy
container_name: caddy
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- ./data:/data
- ./config:/config
- ./Caddyfile:/etc/caddy/Caddyfile:ro
networks:
default:
external: true
name: proxy-network
Now I want to use that container as a reverse proxy for other services running on the docker-host but not as docker container.
Is it possible to add another network (host-network) so I can acess these services via the container proxy?