You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a setup where with docker compose i setup immich power tools to be part of two networks. one is the immich network, other one is the traefik network for the reverse proxying.
Here is a sample compose.yml
services:
power-tools:
container_name: immich-power-toolsimage: ghcr.io/varun-raj/immich-power-tools:latestrestart: unless-stoppedenvironment:
IMMICH_API_KEY: # your_immich_api_keyIMMICH_URL: "http://immich-server:2283"# Your immich instace ip address and portEXTERNAL_IMMICH_URL: "https://immich.external"# External address of immichnetworks:
- traefik
- immichnetworks:
immich:
name: immichtraefik:
external: true
But when starting, immich power tools server does not bind to all the network interfaces. It binds to first available for it, which happens to be the immich network, and does not bind to traefik one, which results in a Bad gateway from the reverse proxy.
I think i face the same issue when I try to deploy it on my swarm cluster. It's not available via the ingress network. Any ideas how to resolve this? thanks
I have a setup where with docker compose i setup immich power tools to be part of two networks. one is the immich network, other one is the traefik network for the reverse proxying.
Here is a sample compose.yml
But when starting, immich power tools server does not bind to all the network interfaces. It binds to first available for it, which happens to be the immich network, and does not bind to traefik one, which results in a Bad gateway from the reverse proxy.
here is the log of the container of power tools
Is there a way to specify to which ip the server will bind? or a fix in the code is needed ?
The text was updated successfully, but these errors were encountered: