Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webinterface nicht erreichbar & leeres Hörspiel in der Library #58

Open
Tino-ko opened this issue Nov 7, 2022 · 3 comments
Open

Webinterface nicht erreichbar & leeres Hörspiel in der Library #58

Tino-ko opened this issue Nov 7, 2022 · 3 comments
Assignees
Labels

Comments

@Tino-ko
Copy link

Tino-ko commented Nov 7, 2022

Hi,

vielen Dank für das tolle tool, meinen Kindern macht das große Freude!
Nach langer Zeit habe ich mir die aktuelle Version ansehen wollen und bin auf 2 Fehler gestossen;

  1. Das docker Image wird mit dem cmd "/bin/sh -c perl ttmp32gme.pl --debug --host=0.0.0.0 --port=8080 --configdir=/ttmp32gme/config" gestartet, das führt dazu das das Webinterface nur intern erreichbar ist:
    Meldung:

Value "--host=0.0.0.0" invalid for option debug (number expected)
Updating config...
Update successful.
[MSG] Server running on port: 8080
Open http://127.0.0.1:8080/ in your favorite web browser to continue.

"/bin/sh -c perl ttmp32gme.pl --host=0.0.0.0 --port=8080 --configdir=/ttmp32gme/config" funktioniert.

  • ich hatte auch den installer (install.sh) ausprobiert aber auch hier startet das Webinterface nicht, vermutlich aus dem gleichen Grund
  1. in der Library gibt es ein Album "DISNEY Kristen Anderson-Lopez - Die Eiskönigin - Völlig unverfroren", leider ohne die Audiofiles ;-)

Ubuntu 22.04.1 in Hyper-v

Viele Grüße

@Tino-ko Tino-ko changed the title Webinterface nicht erreichbar & Leeres Hörspiel in der lib Webinterface nicht erreichbar & leeres Hörspiel in der Library Nov 7, 2022
@thawn
Copy link
Owner

thawn commented Nov 7, 2022

@Tino-ko Vielen Dank für Deinen Bug report. Ich kümmere mich bei Gelegenheit darum.

@thawn thawn self-assigned this Nov 7, 2022
@thawn thawn added the bug label Nov 7, 2022
@daenny
Copy link

daenny commented Apr 7, 2023

Ich hatte das gleiche Problem. Ein es liegt an der --debug option welches in der Dockerfile steht. Danach wird anscheinend ein Zahl erwartet. Ein work-around ist das volgende Kommando:

docker run -d \
	--rm \
	--publish 8080:8080 \
	--volume /home/${USER}/.tiptoi:/var/lib/ttmp32gme \
	--volume /media/${USER}/tiptoi:/mnt/tiptoi \
	--env HOST=127.0.0.1 \
	--env PORT=8080 \
	--name ttmp32gme \
	thawn/ttmp32gme:latest perl ttmp32gme.pl --host=0.0.0.0 --port=8080 --configdir=/ttmp32gme/config

Also explizit das start Kommando mitgeben ohne die --debug Option.

@Tolbag
Copy link

Tolbag commented Sep 23, 2024

Hi,
ich habe das Tool in Dockge unter Proxmox installiert.
Allerdings kann ich ebenfalls nicht auf das Webinterface zugreifen.

Kann mir jemand helfen den Workaround unter Dockge umzusetzen?

Gruesse

Das ist der entsprechende Code für Dockge. Hier ist der Zugriff aufs Interface möglich.

version: "3.7"
services:
  ttmp32gme:
    image: thawn/ttmp32gme:latest
    volumes:
      - ~/.ttmp32gme:/var/lib/ttmp32gme
      - /media/${USER}/tiptoi:/mnt/tiptoi
    ports:
      - 8080:8080
    environment:
      - HOST=127.0.0.1
      - PORT=8080
    command: perl ttmp32gme.pl --host=0.0.0.0 --port=8080 --configdir=/ttmp32gme/config
    networks: {}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants