mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 14:47:25 +10:00
13 lines
497 B
Bash
Executable file
13 lines
497 B
Bash
Executable file
REPO_ROOT=$(dirname $(readlink -f $0))/../..
|
|
|
|
# Perform standard clean
|
|
$REPO_ROOT/docker/scripts/clean.sh
|
|
|
|
# Clean volumes containing private data
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_CACHE_GDRIVE &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_CACHE_SECRETS &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_SIGNAL &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_CACHE_SSH &
|
|
|
|
# Wait for cleans to complete in parallel
|
|
wait
|