Hi there,
I have a Proxmox 8.0.4 running on an old Dell 520.
I have implemented docker services on LXC 103. This is my main LXC, services running are Traefik, Portainer Authentik and docker-socket.
I have less important LXC 110. Here I have not installed Traefik and Authentik as I would like to have it done by the LXC 103
LXC 103 has a docker-socket service running serving a 192.168.91.0/24
LXC 110 has a docker-socket service running serving a 192.168.110.0/24
Traefik is finding some apps from the LXC 110 while others aren't found.
For example Prowlarr is a service created on the LXC 110, It's found in Traefik (LXC 103) and accessible in the browser.
Portainerapps is also created on LXC 110 it's found in Traefik but not accessible in the browser.
Some people tell me that no apps served on another LXC should be visible in another LXC.
I'm baffled and would like some insights.
This is my app-portainerapps.yml
This my app-prowlarr.yml
I have a Proxmox 8.0.4 running on an old Dell 520.
I have implemented docker services on LXC 103. This is my main LXC, services running are Traefik, Portainer Authentik and docker-socket.
I have less important LXC 110. Here I have not installed Traefik and Authentik as I would like to have it done by the LXC 103
LXC 103 has a docker-socket service running serving a 192.168.91.0/24
LXC 110 has a docker-socket service running serving a 192.168.110.0/24
Traefik is finding some apps from the LXC 110 while others aren't found.
For example Prowlarr is a service created on the LXC 110, It's found in Traefik (LXC 103) and accessible in the browser.
Portainerapps is also created on LXC 110 it's found in Traefik but not accessible in the browser.
Some people tell me that no apps served on another LXC should be visible in another LXC.
I'm baffled and would like some insights.
This is my app-portainerapps.yml
Code:
http:
routers:
portainerapps-rpi-rtr:
rule: "Host(`portainerapps.{{env "DOMAINNAME"}}`)"
entryPoints:
- https
middlewares:
- chain-no-auth
service: portainerapps-rpi-svc
tls:
certResolver: dns-cloudflare
services:
portainerapps-rpi-svc:
loadBalancer:
servers:
- url: "http://192.168.1.181:9990"
This my app-prowlarr.yml
Code:
http:
routers:
prowlarr-rpi-rtr:
rule: "Host(`prowlarr.{{env "DOMAINNAME"}}`)"
entryPoints:
- https
middlewares:
- chain-authentik
service: prowlarr-rpi-svc
tls:
certResolver: dns-cloudflare
services:
prowlarr-rpi-svc:
loadBalancer:
servers:
- url: "http://192.168.1.181:9696"
Attachments
Last edited: