6c65726f79 / Transmissionic

Remote for Transmission Daemon
MIT License
425 stars 30 forks source link

linuxserver transmission docker & index.html #1378

Closed esticle closed 11 months ago

esticle commented 11 months ago

Describe the bug

Hi, I'm trying out the skin on the linuxserver docker image (v4) and I keep on getting the message that index.html is not found.

This rings true as I have not found a index.html in the releases files - so what am I missing?

To Reproduce

Compose file:

  transmission:
    image: lscr.io/linuxserver/transmission:latest
    container_name: transmission
    environment:
      - PUID=1006
      - PGID=1006
      - TZ=Europe/Paris
      - TRANSMISSION_WEB_HOME=/webui
    volumes:
      - /docker/transmission/transmissionic:/webui
      - /docker/transmission/config:/config
      - /docker/transmission/downloads:/downloads
      - /docker/transmission/watch:/watch

My /docker/transmission/transmissionic as per above contains the latest version extracted (note, no index.html):

$ ls /docker/transmission/transmissionic
android                electron           LICENSE            PRIVACY.md  resources  tsconfig.json
babel.config.js        ionic.config.json  package.json       public      scripts    vue.config.js
capacitor.config.json  ios                package-lock.json  README.md   src

And then when trying to browse it I get:

$ curl http://192.168.1.111:9091/transmission/web/ 
<h1>404: Not Found</h1>/webui/index.html (No such file or directory)

Any ideas what I'm doing wrong?

Platform:

epiller commented 11 months ago

You downloaded the whole repo, and not just the release. Download this: https://github.com/6c65726f79/Transmissionic/releases/download/v1.8.0/Transmissionic-webui-v1.8.0.zip

Unfortunately even though I did what I said, I still get the same issue. That's why I'm here 😂

Edit: I had a space after "TRANSMISSION_WEB_HOME=". Now it's all fine.

esticle commented 11 months ago

You downloaded the whole repo, and not just the release

Thanks a ton - sorted now as well!