podimo icon indicating copy to clipboard operation
podimo copied to clipboard

Using local credentials doesn't work

Open ghost opened this issue 1 year ago • 0 comments

When I'm using credentials provided via environment variables, the generated URL doenst work. When I the URL with username & password embedded, the URL works.

The compose file I use:

services:
  podimo:
    environment:
      - PODIMO_BIND_HOST=0.0.0.0:12104
      - PODIMO_PROTOCOL=https
      - PODIMO_HOSTNAME=podimo.host.tld
    volumes:
      - /mnt/ssd0/docker/data/podimo/cache:/src/cache
    image: ghcr.io/thijsray/podimo:latest
    restart: unless-stopped

Or with the local credentials

services:
  podimo:
    environment:
      - PODIMO_BIND_HOST=0.0.0.0:12104
      - PODIMO_PROTOCOL=https
      - LOCAL_CREDENTIALS=true
      - PODIMO_HOSTNAME=podimo.host.tld
      - PODIMO_EMAIL="myemailaddress"
      - PODIMO_PASSWORD="mypassword"
    volumes:
      - /mnt/ssd0/docker/data/podimo/cache:/src/cache
    image: ghcr.io/thijsray/podimo:latest
    restart: unless-stopped

Tried with & without " around e-mail / password.

ghost avatar Dec 06 '24 13:12 ghost