June 29, 201610 yr Mine is /config /mnt/cache/Apps/plex/ Is this wrong? That's correct. Was just spitballing ideas
June 29, 201610 yr Thanks It's not a major issue not reaching the dashboard, but need to get it fixed somehow
July 28, 20169 yr Squid has created an excellent guide to creating your own Docker templates (in the Docker FAQ) - How Do I Create My Own Docker Templates?
March 20, 20206 yr i have a couple dockers i want to use but in their config page, the port allocations clash with qbittorrent on 8080. changing the host path doesn't work so i'm left with a limited amount of dockers i can use. i initially wanted to use Go-Auto-YT but had to settle with Jdownloader2, which now seems to be not working (can't enter any text anymore to create a new download, and it wasn't great to begin with). either way, i just haven't had any luck changing settings like this at all, it just never seems to work.
March 20, 20206 yr Community Expert 1 hour ago, gellux said: i have a couple dockers i want to use but in their config page, the port allocations clash with qbittorrent on 8080. changing the host path doesn't work so i'm left with a limited amount of dockers i can use. i initially wanted to use Go-Auto-YT but had to settle with Jdownloader2, which now seems to be not working (can't enter any text anymore to create a new download, and it wasn't great to begin with). either way, i just haven't had any luck changing settings like this at all, it just never seems to work. Have you read any of the Docker FAQ? What Network Type are you setting for the dockers? Host Network Type will not work if you need to map the container port to a different host port. Lots of people are doing this successfully.
March 21, 20206 yr 15 hours ago, trurl said: Have you read any of the Docker FAQ? What Network Type are you setting for the dockers? Host Network Type will not work if you need to map the container port to a different host port. Lots of people are doing this successfully. yeah! specifically this which is exactly what i'm trying to do. i've opened the Docker tab, clicked Edit on go-auto-yt and where it says HTTP Port: i've changed 8080 to 8090, underneath it still says Container Port: 8080 so i've assumed that's what's being recommended? but it doesn't work. unless i've totally misunderstood the instructions which is very possible.
March 21, 20206 yr 3 minutes ago, gellux said: which is exactly what i'm trying to do. i've opened the Docker tab, clicked Edit on go-auto-yt and where it says HTTP Port: i've changed 8080 to 8090, underneath it still says Container Port: 8080 And it always will say that because internally the app is using port 8080, but the docker system will accept the connections on port 8090 (assuming you're using bridge mode) and forward it to the app on it's port 8080. A vast number of apps all use port 8080 internally and can be run simultaneously no problems doing exactly what you've done. BUT, if you've change the container port via the EDIT button, then you've messed around with the whole system and it won't work. You just need to change the HOST port and leave everything else alone.
March 21, 20206 yr 35 minutes ago, Squid said: And it always will say that because internally the app is using port 8080, but the docker system will accept the connections on port 8090 (assuming you're using bridge mode) and forward it to the app on it's port 8080. A vast number of apps all use port 8080 internally and can be run simultaneously no problems doing exactly what you've done. BUT, if you've change the container port via the EDIT button, then you've messed around with the whole system and it won't work. You just need to change the HOST port and leave everything else alone. forgive me, but how else are you meant to do it? i thought that was the straight-forward idiot-proof way. i'm obviously wrong.
March 21, 20206 yr On the add / edit screen for the template, you can simply type in the appropriate port you want to use (all assuming you're on bridge mode). If you do decide to hit the edit button, only change the HOST port. This is from one of my apps (cops). It is set for its webUI to be on port 807.
March 21, 20206 yr 35 minutes ago, Squid said: On the add / edit screen for the template, you can simply type in the appropriate port you want to use (all assuming you're on bridge mode). If you do decide to hit the edit button, only change the HOST port. This is from one of my apps (cops). It is set for its webUI to be on port 807. yeah that's literally all i've done. it won't allow me to start the app/docker/image whatever you wanna call it so maybe there's another issue? Edited March 21, 20206 yr by gellux added image for help
March 21, 20206 yr 6 minutes ago, gellux said: it won't allow me to start Post your docker run command. See the first recommended post in the Docker FAQ thread.
March 21, 20206 yr if it adds anything, i've included that pic of my docker images. the port mappings shown for the go-auto-yt are completely different to the others which are like 192.168.etc.etc and stuff so i suspect that's the problem? or at least one of the problems.
March 21, 20206 yr 2 minutes ago, Squid said: Post your docker run command. See the first recommended post in the Docker FAQ thread. Command:root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='go-auto-yt' --net='bridge' -e TZ="Europe/London" -e HOST_OS="Unraid" -e 'PUID'='1000' -e 'PGID'='1000' -e 'UMASK_SET'='0022' -p '8091:8080/tcp' -v '/mnt/user/appdata/go-auto-yt/downloads':'/app/downloads':'rw' -v '/mnt/user/appdata/go-auto-yt/config':'/app/config':'rw' 'xiovv/go-auto-yt:stable' 6ebdeaff5e8c8d72c6e8ce874a1f604850d92e5420f4c6d82e86d3e07d8ff871 The command finished successfully!
March 21, 20206 yr It started no problems. What's happening is a template error by @Jidovu Marius Adrian. Edit the container, switch to Advanced View in the top right and on the Web-UI line change it from http://[IP]:[PORT:9000] to instead be http://[IP]:[PORT:8080] The webUI on the context menu should then work.
March 21, 20206 yr 5 minutes ago, Squid said: It started no problems. What's happening is a template error by @Jidovu Marius Adrian. Edit the container, switch to Advanced View in the top right and on the Web-UI line change it from http://[IP]:[PORT:9000] to instead be http://[IP]:[PORT:8080] The webUI on the context menu should then work. done - no change
March 21, 20206 yr Its starting, so any further problems you need to post within its support thread as it's now application specific
March 21, 20206 yr 2 minutes ago, Squid said: Its starting, so any further problems you need to post within its support thread as it's now application specific it doesn't start at all. I click Start and it spins a second and then goes to Stopped
March 21, 20206 yr The docker run command doesn't return any errors. Which means that the container started no problems. If it then exists due to whatever other reason then that's something within the container itself (IDK ? config file?) then you need to look in the support thread etc for help on that and ideally post there. It's not a general error that anyone is going to be able to help with (ie: myself) who doesn't actually run the thing.
March 21, 20206 yr 9 minutes ago, Squid said: The docker run command doesn't return any errors. Which means that the container started no problems. If it then exists due to whatever other reason then that's something within the container itself (IDK ? config file?) then you need to look in the support thread etc for help on that and ideally post there. It's not a general error that anyone is going to be able to help with (ie: myself) who doesn't actually run the thing. i see what you mean. thanks for your help!
March 21, 20206 yr As an aside, I did just install the app. Didn't change a thing on the template (which means that it uses port 9000) and it starts up no problems at all.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.