Page 1 of 1

only works without user

Posted: Mon Aug 12, 2024 4:58 pm
by santi
I have installed the latest version of transmission in docker on debian, it works fine, but if I uncheck the user and password in the docker-compose.yml file there is no way to authenticate, I don't know what to do.

Code: Select all

services:
  transmission:
    image: lscr.io/linuxserver/transmission:latest
    container_name: transmission
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Madrid
      - TRANSMISSION_WEB_HOME= #optional
      - USER= santi
      - PASS= santi
      - WHITELIST= #optional
      - PEERPORT= #optional
      - HOST_WHITELIST= #optional
    volumes:
      - ./config:/config
      - ./downloads:/downloads
      - ./watch:/watch
    restart: unless-stopped
    network_mode: host

Re: only works without user

Posted: Mon Aug 12, 2024 6:33 pm
by santi
I already found the error, it was the space after the = sign
at.png
at.png (13.07 KiB) Viewed 14118 times