mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 14:47:25 +10:00
16 lines
786 B
Bash
Executable file
16 lines
786 B
Bash
Executable file
REPO_ROOT=$(dirname $(readlink -f $0))/../..
|
|
|
|
# Clean secrets and home
|
|
$REPO_ROOT/docker/scripts/clean-secrets.sh
|
|
|
|
# Remove volumes that can be recreated from scratch, but require manual configuration in app
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_CHROME &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_CODE &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_GITHUB &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_JUMP &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_MUSIKCUBE &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_TRAEFIK &
|
|
$REPO_ROOT/docker/scripts/wipe-volume.sh DESKTOP_ENVIRONMENT_STATE_ZOOM &
|
|
|
|
# Wait for cleans to complete in parallel
|
|
wait
|