SkyHead Posted June 29, 2016 Share Posted June 29, 2016 Mine is /config /mnt/cache/Apps/plex/ Is this wrong? Quote Link to comment
Squid Posted June 29, 2016 Share Posted June 29, 2016 Mine is /config /mnt/cache/Apps/plex/ Is this wrong? That's correct. Was just spitballing ideas Quote Link to comment
SkyHead Posted June 29, 2016 Share Posted June 29, 2016 Thanks It's not a major issue not reaching the dashboard, but need to get it fixed somehow Quote Link to comment
RobJ Posted July 28, 2016 Share Posted July 28, 2016 Squid has created an excellent guide to creating your own Docker templates (in the Docker FAQ) - How Do I Create My Own Docker Templates? Quote Link to comment
gellux Posted March 20, 2020 Share Posted March 20, 2020 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. Quote Link to comment
trurl Posted March 20, 2020 Share Posted March 20, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 (edited) 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, 2020 by gellux added image for help Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 2 minutes ago, Squid said: Post your docker run command. See the first recommended post in the Docker FAQ thread. Command:[email protected]:# /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! Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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 Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 Its starting, so any further problems you need to post within its support thread as it's now application specific Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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 Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
gellux Posted March 21, 2020 Share Posted March 21, 2020 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! Quote Link to comment
Squid Posted March 21, 2020 Share Posted March 21, 2020 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. Quote Link to comment
Recommended Posts
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.