mkono87

Members
  • Posts

    197
  • Joined

  • Last visited

Everything posted by mkono87

  1. Installed this for the first time but having a problem with ram usage. During the import process the container memory usuage slowly increases tills its maxed out and unraid locks up until im able to stop the container.
  2. Great thanks for your quick replies Sent from my Mi A2 using Tapatalk
  3. Gotcha I see it now thanks. What about new containers I install from CA....Will it use slave from now on or do I need to remember that everytime?
  4. @SquidMy whole reasoning behind doing it was that I was having issues with system lag due to iowait causing cpu to stay at 100% when extracting large files or encoding video to new formats. It would cause some of my containers mainly Home Assistant to start acting up and throwing false positives on automatons. So Im trying to separate things as much as I can and the output folder of the encoded media not to use the cache anymore. Okay so Il have go to each container one by one and create new paths for the /config folders as its looks like there is not edit button for those paths.
  5. I have an Ssd in unassigned drives that I use for vms but I decided to take my docker.img and app data from my cache drive and put it on the deticated Ssd. So far it working well. I did not delete the original docker.img just in case. Tried to delete in krusader but didn't work. How can I do this? After going one by one through my templates and switching all the config paths over to the new drive I went into fix common problems and it tells me I should switch it to slave. Why is this exactly? If everything is on the same drive like it was when it was cache? Why do this? Does the system share have to stay on cache? It's has that usblib file. Did it make sense to move docker to a dedicated Ssd or will this complicate things?
  6. Ah see thats what the template does by default so I was a little confused if it was intended to be a folder name too. I still get the same error though.
  7. Cant seem to install it. I made sure all paths were correct and picked an ip address but its always telling me its failed. root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='Mopidy' --net='br0' --ip='192.168.0.5' -e TZ="America/New_York" -e HOST_OS="Unraid" -v '/mnt/user/appdata/mopidy/mopidy.conf':'/etc/mopidy.conf':'rw' -v '/mnt/user/appdata/mopidy/tmp/':'/tmp/':'rw' -v '/mnt/user/media/Music/':'/media':'rw' 'knex666/mopidy' 061521d60da08664c0bd6ff1937ad685bf238f92ee2efc3de398bd875550d334 /usr/bin/docker: Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "process_linux.go:424: container init caused "rootfs_linux.go:58: mounting \"/mnt/user/appdata/mopidy/mopidy.conf\" to rootfs \"/var/lib/docker/btrfs/subvolumes/404d13417f8511c1a7192a4b26a0311fed3bfec5bb534e5dfa92611bc5c1eb46\" at \"/var/lib/docker/btrfs/subvolumes/404d13417f8511c1a7192a4b26a0311fed3bfec5bb534e5dfa92611bc5c1eb46/etc/mopidy.conf\" caused \"not a directory\""": unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type. Is the mopidy .conf suppose to be a folder or file? Because it does create a folder in appdata but nothing inside. Guessing because it cant start?
  8. This was taken from a docker-compose. Can it be used is extra parameters/post arguments? command: sh -c "/usr/bin/adbscript.sh & adb -a -P 5037 server nodaemon" Sent from my Mi A2 using Tapatalk
  9. No I have no tried it. As I was able to get it to connect manually, I didnt think i needed it. Figured it was script causing issues.
  10. No you mean the dockerhub page? I didnt see anything like that.
  11. Unfortunately not. I ended up giving up and just made turn have unraid not turn off the container while appdata backup is in progress. So really I would only have to worry about reconnecting devices when the entire server is restarted.
  12. Will try that thanks dude Sent from my Mi A2 using Tapatalk
  13. Not sure how that's possible as HA is host and all my other dockers such as influxdb, mariadb, mqtt ect are all bridge Sent from my Mi A2 using Tapatalk
  14. Home assistant has to be run as host or it doesn't work properly with other containers. Been down that road in the past. Il try br0 when I have a chance. What's so funny? Sent from my Mi A2 using Tapatalk
  15. See with this it connects on startup ``` #!/bin/sh sleep 5 DEVICES="192.168.0.206" echo "Connecting to devices." for device in $DEVICES; do adb connect $device done echo "Done." while true; do for device in $DEVICES; do adb connect $device > /dev/null 2>&1 done sleep 60 done ``` ``` Connecting to devices. * daemon not running; starting now at tcp:5037 * daemon started successfully connected to 192.168.0.206:5555 Done. ``` But HA is unable to connect to it. So I cant catch a break. Im wondering its something within docker (unraid) network settings or something. Both are set to bridge like all my other containers (well expect HA) and the ports are exposed. In theory this should be working ``` Mon Apr 01 2019 11:29:16 GMT-0400 (Eastern Daylight Time) Could not connect to mike firetv at 192.168.0.206:5555 using ADB server at 192.168.0.50:5037 ```
  16. I'm not sure you understand what I'm dealing with. There is no config folder needed for this container. the issue after building the container with the script injected using the Add and cmd. The container stops and says path doesn't exist If. I run the container right from docker hub without modifying it and connect my android devices, home assistant can connect. But when I add a script to make it auto connect if the container restarts ha can't connect to it. Sent from my Mi A2 using Tapatalk
  17. This is the image im working with https://hub.docker.com/r/sorccu/adb/ I dont there is really a config folder to be mounted in this case.
  18. Its been a headache and a half and my last resort is posting on here hoping that someone has this setup and can perhaps provide some assistance. Im using the docker home assistant container and been wanting to use an adb container to connect my android devices to use with the androidtv component. Im using the sorccu/adb from dockerhub. I can provide more info but here is a summary of what im dealing with. When i pull the container and manually connect to my devices with the container console. HA is able to connect np after restart. Only issue is when the container restarts it doesnt remember the devices. My appdata gets backed up every night so, I tried editing the dockerfile and adding a script that would auto connect, however after doing this HA will not connect to it at all even though my android devices are connected. Here is some info of stuff i have setup https://hastebin.com/tutiliripo.bash https://www.home-assistant.io/components/androidtv/ https://androidtv.readthedocs.io/en/adb-setup-documentation/adb_setup.html
  19. I got it working!! There was a missing $ infront of CONFIG in nextcloud php. Such a small error but finally fixed. Now that I know it works. Im going to try to work on using my actual real domain.
  20. Yes it still the same after changing it. In the activity log is shows [10/Jan/2019:11:43:19 -0500] "GET / HTTP/1.1" 500 304 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36" IM guessing its a problem with nextcloud config? I was trying with a subdomain too but was getting the same error
  21. Changed but I get this error Internal Server Error The server encountered an internal error and was unable to complete your request. Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report. More details can be found in the webserver log. I checked the logs and server is ready I do get a warning about increasing the max buffer hash size. I dont think that would cause it to not run though
  22. So I have looked at the template and doing some more research I came up with this but when trying it in an incognito window I get a refused to connect error. https://hastebin.com/ozefovuriv.php
  23. thanks I apreciate your offer to help. I just wanted to make sure, do you mean the let's encrypt template? Sent from my ONEPLUS A3000 using Tapatalk
  24. no I do not have a custom network interface defined. I have used the default with all my other services which are working fine in nginx.. mainly bridge mode. I havenlooked at all examples. Sent from my ONEPLUS A3000 using Tapatalk