mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 14:47:25 +10:00
11 lines
540 B
Bash
Executable file
11 lines
540 B
Bash
Executable file
REPO_ROOT=$(dirname $(readlink -f $0))/../..
|
|
|
|
# Stop the running environment so there are no containers using the volumes, ignoring errors if it does not exist
|
|
# $REPO_ROOT/docker/scripts/stop.sh 2>/dev/null
|
|
|
|
# Remove stateful volumes that are recreated directly from the container filesystem
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_CACHE_VCSH
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_USER_HOME
|
|
|
|
# Ensure all docker volumes are owned after removing paths
|
|
$REPO_ROOT/docker/scripts/take-ownership.sh
|