Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

frakman1

Community Developer
  • Joined

  • Last visited

Everything posted by frakman1

  1. you can install your favourite editor (nano, vim, emacs) apt-get update apt-get install nano
  2. /etc/rc.d/rc.nginx restart /etc/rc.d/rc.php-fpm restart
  3. I tried to install this from the APP store (binhex-preclear) but I got this error while running the docker run command:
  4. In their infinite wisdom, the creators of this app made the password field be the md5 hash of your actual password. See my earlier post here for details on how to set it.
  5. I just updated mine to the latest 12.5.2 and it works fine: I've noticed that on some docker containers that keep crashing sometimes, that if I edit the Docker configuration and just add an empty field or make a trivial change to the description and Apply it, then it re-runs the docker command to create the container and it starts working again. Even with a pinned version of the image so it can't be because of a new feature or bug-fix. Try doing that.
  6. In my screenshot above I show the string I used for "Repository". This allows you to select the tagged versionof Gitlab that you want. Change it from: gitlab/gitlab-ce:latest to : gitlab/gitlab-ce:12.5.2-ce.0 (or anything you want) You can go to dockerhub and choose from a list of official tags.
  7. @ElectricBadger @JasterCan you go back to a working earlier version? I have mine pinned to 12.5.2-ce.0 which I know works for me. I don't update the docker but when I do, I pin it to the version I want. See screenshot below for my Docker Settings
  8. Oh sorry for the misunderstanding. What version of Gitlab is it? I'll try upgrading mine to the latest and test it out.
  9. I have mine up and running. There's a bunch of configuration you have to do to get it to work with Gitlab. This is a good start https://docs.gitlab.com/ee/integration/sourcegraph.html#enable-the-sourcegraph-feature-flag It's a bit tricky with a lot of configurations. Let me know if you run into problems and I'll be happy to show you what I did.
  10. For those of you (like me) who were excited about the announcement that Gitlab now integrates with Sourcegraph, I created a Sourcegraph Unraid template based on this Gitlab template. You can find it in Community Applications under "Sourcegraph". It's my first contribution so please give it a shot and let me know if it works for you or not. If you want to know more about Sourcegraph, this is a quick screencast I had to enable the feature at the Gitlab rails console using this: gitlab-rails console Feature.enable(:sourcegraph)
  11. Thank you! That was it. I was looking all over for it *inside* the docker container.
  12. I'm using the Gitlab CE docker. For some reason, it thinks that it's URL is http://unraid:9080. This impacts all related services and links. Nothing on my home network knows what unraid is so nothing works. Where do I change it?
  13. @rwarren873 This tripped me up too. The password field in the docker template is actually an md5 hash of your password. To get that, run this on any Linux terminal: echo -n mysupersecretpassword | openssl md5 (stdin)= 117a520adbd19eff51100215aa7a7fbf That value (117a520adbd19eff51100215aa7a7fbf) is your password hash. Put that in the password field of your docker template, and use the actual password (mysupersecretpassword) when you login to Guacamole. I found this information on the docker info page in dockerhub: https://hub.docker.com/r/linuxserver/calibre
  14. Well, you used the word 'plugin' so I did just that and looked for it in the plugins tab. Ok. I installed it, but what am I supposed to select to "Auto Update" in order to patch the OS and fix the DockerHub issue? This particular Calibre docker container under Settings->Docker Auto Update Settings ?
  15. Can you please share where this auto-update plugin is located please? I don't have it installed and I need a URL to add it.
  16. Mine just has these three ports: 9080, 9443, 9022 by default.
  17. Calibre can only see the host folder that you mapped in the docker template using the "Library Location" parameter. Open your docker template page for Calibre and change the Library Location to /mnt/user/Downloads/calibre and restart the container. Calibre should then be able to access this folder via its /books folder.
  18. Perhaps it's not a bug with the container but since this is an Unraid forum and this is a topic about supporting the linuxserver/calibre container, I am bringing it up here. My host's TZ is correctly set to Eastern Time zone. # date Thu Oct 3 11:41:45 EDT 2019 # clock 2019-10-03 11:42:33.310583-04:00 # date +"%Z %z" EDT -0400 However, when I update the container, the docker run command is using Los Angeles TZ: /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='calibre' --net='proxynet' --log-opt max-size='50m' --log-opt max-file='1' -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e 'GUAC_USER'='xxx' -e 'GUAC_PASS'='xxx' -e 'PUID'='99' -e 'PGID'='100' -p '8080:8080/tcp' -p '8081:8081/tcp' -v '/mnt/user/myData/media/ebooks':'/books':'rw' -v '/mnt/user/myData/media/ebooks/imports':'/import':'rw' -v '/mnt/user/appdata/calibre':'/config':'rw' --log-opt max-size=50m --log-opt max-file=1 'linuxserver/calibre' I didn't add an extra TZ parameter so I don't know where it is getting it from. See Template view below:
  19. Kindly explain how this is not a bug. There is a TZ field in the template. I fill out the TZ field. The field is ignored and reverts to the host TZ. That sounds like bug in my book.
  20. The TZ should not come from unraid. It's an input parameter to the container which should be honored. If it's coming from Unraid then that's a bug that should either be fixed or have the TZ field removed if it isn't doing anything.
  21. @saarg Here you go: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='calibre' --net='proxynet' --log-opt max-size='50m' --log-opt max-file='1' -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e 'GUAC_USER'='<redacted>' -e 'GUAC_PASS'='<redacted>' -e 'PUID'='99' -e 'PGID'='100' -p '8080:8080/tcp' -p '8081:8081/tcp' -v '/mnt/user/myData/media/ebooks':'/books':'rw' -v '/mnt/user/myData/media/ebooks/imports':'/import':'rw' -v '/mnt/user/appdata/calibre':'/config':'rw' --log-opt max-size=50m --log-opt max-file=1 'linuxserver/calibre' Note the wrong TZ variable despite it being set in the template:
  22. I noticed that when I changed the TZ to America/New_York, it still uses the default America/Los_Angeles. Some template values don't seem to make it into the docker run command for some reason. root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='pihole' --net='br0' --ip='192.168.86.2' --log-opt max-size='50m' --log-opt max-file='1' -e TZ="America/Los_Angeles" -e HOST_OS="Unraid" -e 'TCP_PORT_53'='53' -e 'UDP_PORT_53'='53' -e 'TCP_PORT_80'='80' -e 'PUID'='99' -e 'PGID'='100' -e 'ServerIP'='192.168.86.2' -e 'ServerIPv6'='' -e 'DNS1'='9.9.9.9' -e 'DNS2'='149.112.112.112' -e 'IPv6'='False' -e 'TZ'='America/New_York' -e 'WEBPASSWORD'='admin' -e 'INTERFACE'='br0' -e 'DNSMASQ_LISTENING'='all' -v '/mnt/user/appdata/pihole/pihole/':'/etc/pihole/':'rw' -v '/mnt/user/appdata/pihole/dnsmasq.d/':'/etc/dnsmasq.d/':'rw' --cap-add=NET_ADMIN --dns 127.0.0.1 --dns 1.1.1.1 --restart=unless-stopped 'pihole/pihole:4.3.1-4_amd64' WARNING: Localhost DNS setting (--dns=127.0.0.1) may fail in containers.
  23. I was quoting somebody else's "docker run". Mine is default 8080:8080 and 8081:8081 Ultimately, it doesn't matter because I click on the "WebUI" menu item which opens to "http://192.168.86.98:8080/#/" and get this: Anyway, thank you for the tip for getting a "docker run". It seems like I do have to make a trivial change, update and change it back just to see the docker-run syntax which seems a little silly. It would be nice if the UI included the last syntax it used for "docker run" in an unused text field especially if that command is important for troubleshooting purposes. By the way, how come I don't see the "docker run" command when I look at the Unraid server's logs?
  24. I'm having the exact same error which is causing the web ui not to work.i.e. going to poprt 8080 to see the app interface won't work. Going to port 8081 however does work. Apparently, restarting the container a few times eventually got it to work. My question however, is how do you get the 'docker run' syntax that is getting called on a docker app you already have? I think it flashed on the screen when you download it for the first time or when you update it right?
  25. @tillkrueger I played around with it and I have some questions: 1- Where is the left side panel that has all the bookmarks for various commonly used folders? I don't see a way to add that. 2- Under Settings->Show command line. What does that actually do/allow you to do?

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.