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.

Pirat

Members
  • Joined

Everything posted by Pirat

  1. After enabling the docker setting "Preserve user defined networks", any network that has a name starting with a number will still be removed when docker is restarted. I did some digging in /etc/rc.d/rc.docker and noticed this check in the stop_network function: [[ $DOCKER_USER_NETWORKS != preserve || $STOCK =~ ${NETWORK%%[0-9]*} ]] && docker network rm $NETWORK 1>/dev/null 2>&1 The part after the or is what is causing the issue. It compares $STOCK to the network name after stripping the first number and any following characters from it. So if a network is called "5.x", then ${NETWORK%%[0-9]*} will simply return an empty string. This will cause the regex to match to $STOCK and return true (for some reason I don't understand). The network will then be removed. It would be good if either a warning could be printed somewhere to inform that starting with a number is not allowed, or if the regex could be rewritten to allow it.

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.