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.

bmartino1

Members
  • Joined

  • Last visited

  1. bmartino1 replied to KML's topic in Docker Engine
    Everything I have set up and use is official from Immich GitHub and per there documentations... the manufacturer behind Immich wants unraid users to use Compose; that is the official setup. The CA AIO, as you describe, reuses Space Invaders and the official Immich machine learning and Immich server bundled in 1 container... They are offical dockers per immich. see offical documentation https://docs.immich.app/install/unraid/
  2. ... Does no one search or read the forums... Offical Support for Immich: https://forums.unraid.net/topic/146106-immich-docker-self-hosted-google-photos-setup Guides were out a long while... CA: https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Compose: https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html I also have the apps in the CA under my repository bmartino1 https://ca.unraid.net/apps?q=bmartino which use the Space Invaders template for immich via ca...
  3. bmartino1 replied to KML's topic in Docker Engine
    The official way is via a Compose plugin in the CA. steps are here for offical install https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html if you don't want to mess with compose the Immich maintainers' preferred way you can follow this and install and run via CA. https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html postgress is the main items that has been changed. https://github.com/immich-app/base-images/pkgs/container/postgres/versions?filters%5Bversion_type%5D=tagged Redis is no more bitnami was bought out use valkey instead...
  4. all tags from imich for the changeover are listed here: https://github.com/immich-app/base-images/pkgs/container/postgres/versions?filters%5Bversion_type%5D=tagged CA guide install can be found here: https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html
  5. have and its been around for a while... items are in the CA... https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Reddis is gone. Bitnami was bought out, and there redis docker are gone use valkey instead... Ideally, it is recommended to use docekr compose plugin... and run via Docker Compose.. https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html the support page is here: https://forums.unraid.net/topic/146106-immich-docker-self-hosted-google-photos-setup
  6. ... https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html
  7. make sure permission are applied to th4 docker and taht the notepad items are being saved. general steam cmd stuff and mods for the avorion https://aleforge.net/help/how-to-install-mods-on-your-avorion-server/ That file looks correct, but an item option or line spacing may be causing problems. lua is YAML syntax and is space-sensitive. Per the link above on the file make sure the line 15 doesn't have the ","
  8. An update was made to add and fix some additional items to speedtest. including moving to updated Python packages and files. Sadly, it looks like an end of an era for python speedtest-cli From the archived sivel/speedtest-cli Python project. It is an unofficial Python implementation that uses an older Speedtest.net configuration and server-discovery endpoints. Its own documentation warns that Speedtest.net moved to socket-based tests and that results may differ from the official website. The repository was archived on April 30, 2026. https://github.com/sivel/speedtest-cli https://github.com/bmartino1/NetProbe_Python/issues/5 I have reached out to Ookla Speedtest for uses of their binary and have working tested code, hopefully with a new Docker tag soon going over backends. Until I know more if the python speedtest-cli will be maintained, and while the application works, the server list may slowly move to the new Ookla endpoint, which is governed by another EULA. https://www.speedtest.net/about/eula I may be forced to remove speedtest data outright moving forward or given permission to implement a user-accept Ookla EULA to continue offering speedtests with this Mit Netproble_python project. Please see issues #4 and the production release with changes to the web UI and speedtest. By default, I enabled HTTPS, which may change speedtest results via the Python package. https://github.com/bmartino1/NetProbe_Python/issues/4 https://github.com/bmartino1/NetProbe_Python/releases/tag/Production-i4 Licensing might change due to Ookla speedtest.net EULA for perosnla non comercal use, especially with speedtest distribution.
  9. bmartino1 started following Docker requests
  10. I would recommend using immich first. I will take a look to see if this is comparable. but don't think this can be easily added to unraid the github projects really want to build it and run side scripts. https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Ente while not production-ready a compose file exists.... https://github.com/ente/ente/blob/main/server/compose.yaml Multiple dockers are need to run ente-io immich is open source and comparable to google photos. https://github.com/immich-app/immich Photoprism is alos a solid second choice alternative, albeit Photoprism doesn't have a free mobile app where Immich does...
  11. type diagnostic and this will make and add a file onthe usb that you can post to the form for the mod JorgeB to inspect... you typed teh comand worng its dhcpcd not dhcp...
  12. The screenshot and pictures appear to be a QEMU VM spice connection / ipmi connection...
  13. Here's some unraid web terminal things to check and double-check... Run these in Unraid terminal: # Show all IPs/interfaces ip -br addr # Show default gateway ip route # Show which gateway the server would use ip route | grep default *Find your main NIC, usually br0, eth0, or bond0. # Replace br0 if your interface is different IFACE=br0 Default should be br0... # Show IP on that interface ip addr show "$IFACE" # Show DHCP lease info if present cat /var/lib/dhcpcd/*.lease 2>/dev/null cat /etc/dhcpcd.duid 2>/dev/null Steps to Release/reacquire DHCP: IFACE=br0This will set the variable for future items targeting the necessary interface. default should be br0... # Drop current DHCP lease dhcpcd -k "$IFACE" # Request a fresh DHCP lease dhcpcd "$IFACE" Verify dhcp data received. # Recheck IP and route ip -br addr ip route Ping gateway: GW=$(ip route | awk '/default/ {print $3; exit}') echo "Gateway is: $GW" ping -c 4 "$GW" Ping the Internet IP and DNS: ping -c 4 1.1.1.1 ping -c 4 google.com Script One-shot full check: IFACE=br0 echo "=== IPs ==="; ip -br addr echo "=== Routes ==="; ip route GW=$(ip route | awk '/default/ {print $3; exit}') echo "=== Gateway: $GW ===" ping -c 4 "$GW" echo "=== Internet IP ===" ping -c 4 1.1.1.1 echo "=== DNS ===" ping -c 4 google.comIf DHCP renew fails, restart networking from the Unraid GUI or use: /etc/rc.d/rc.inet1 restartThen recheck: ip -br addr ip route ping -c 4 "$(ip route | awk '/default/ {print $3; exit}')"
  14. The 169 is a DHCP address, meaning that it was unable to obtain a proper IP address from your router within the set time. When it went searching for IP.
  15. docker extra parm option may be worth a try. --dns 8.8.8.8 https://docs.docker.com/engine/network/#dns-services
  16. intel optanes 16GB ssd is where i go for a nvme interal boot now as ists a quick low strage long lasting althernative for usb access. bought a 10 pack a while back when usinga asrock b250 miners for hive and other. converting them into fedor bazite installs... there quite a few low end ssd that are great for the internal boot option. Was able to upgarde 1 system with out issues. suprsied to see kerneal panics after a update hard shutdown the machine and turned on then no issues... so something to be weary of in some old hardware on 5th gen intel baords potenal kerneal rip Could npt find a define cause at boot after upgrade. ram was good. usb boot... againa hard shutdown and power up no issues... but defint somthing to look for during the upgrade path...

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.