mirror of
https://github.com/unraid/webgui.git
synced 2026-01-12 20:49:56 -06:00
11 lines
268 B
Bash
Executable File
11 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# delete the docker image file
|
|
if [ -f /boot/config/docker.cfg ]; then
|
|
. /boot/config/docker.cfg
|
|
if [ "${DOCKER_IMAGE_FILE}" != "" -a -f "${DOCKER_IMAGE_FILE}" ]; then
|
|
echo "Deleting ${DOCKER_IMAGE_FILE} ..."
|
|
rm "${DOCKER_IMAGE_FILE}"
|
|
fi
|
|
fi
|