mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 13:39:58 -06:00
8 lines
258 B
Bash
Executable File
8 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
# Invoked after docker image loopback mounted but before docker is started
|
|
|
|
if [[ -f /boot/config/docker.cfg ]]; then
|
|
. /boot/config/docker.cfg
|
|
[[ "$DOCKER_USER_NETWORKS" != "preserve" ]] && rm -f /var/lib/docker/network/files/local-kv.db
|
|
fi
|