only works without user

Discussion of Transmission that doesn't fit in the other categories
Post Reply
santi
Posts: 2
Joined: Mon Aug 12, 2024 4:45 pm

only works without user

Post 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
santi
Posts: 2
Joined: Mon Aug 12, 2024 4:45 pm

Re: only works without user

Post by santi »

I already found the error, it was the space after the = sign
at.png
at.png (13.07 KiB) Viewed 5996 times
Post Reply