How do I use TRANSMISSION_WEB_HOME now with Transmission 4.0?

Hi,
I am trying to use a webui in another directory other than /config, and I get this error now:
404: Not Found
/srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/transmission-ui/transmissionic/index.html (No such file or directory)

Docker Compose below, its the PGID and PUID as my login, so it should have access to the directory.

version: “2.1”
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=100
- TZ=America/Chicago
- TRANSMISSION_WEB_HOME=/srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/transmission-ui/transmissionic
volumes:
- /srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/transmission:/config
- /srv/dev-disk-by-uuid-32a7cc77-7672-4dbf-b432-6b260b8c427b/downloads/transmission:/downloads
- /srv/dev-disk-by-uuid-32a7cc77-7672-4dbf-b432-6b260b8c427b/downloads/watch:/watch
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stopped

Inside the container, it doesn’t see the external path.
Add

- /srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/transmission-ui/:/ui

to the volumes: section and set

- TRANSMISSION_WEB_HOME=/ui/transmissionic

and the container’s internal environment should be able to see things properly if the paths were correct as written.

Oh my, thank you so much! Maybe the readme should be updated to help other folks with this.

Here’s my docker compose for folks who want to use transmissionic which is still in development and good for Transmission 4.0!

version: "2.1"
services:
  transmission:
    image: lscr.io/linuxserver/transmission:latest
    container_name: emp-transmission
    environment:
      - PUID=1000
      - PGID=100
      - TZ=America/Chicago
      - TRANSMISSION_WEB_HOME=/ui/transmissionic
      
    volumes:
      - /srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/emp-transmission:/config
      - /srv/dev-disk-by-uuid-32a7cc77-7672-4dbf-b432-6b260b8c427b/downloads/emp-transmission:/downloads
      - /srv/dev-disk-by-uuid-32a7cc77-7672-4dbf-b432-6b260b8c427b/downloads/emp-transmission/watch:/watch
      - /srv/dev-disk-by-uuid-7b524550-3c79-48da-bc33-baca0629ba65/docker/transmission-ui/:/ui
    ports:
      - 9094:9091
      - 51414:51413
      - 51414:51413/udp
    restart: unless-stopped```

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.