Skip to content

Instantly share code, notes, and snippets.

@aczietlow
Last active August 9, 2017 00:46
Show Gist options
  • Save aczietlow/832b0e4f3768c5f943a8ad03600a24e0 to your computer and use it in GitHub Desktop.
Save aczietlow/832b0e4f3768c5f943a8ad03600a24e0 to your computer and use it in GitHub Desktop.
Remove all things docksal and revert back to the 1.3 release... Better times.
#!/usr/bin/env sh
export DOCKSAL_VERSION=v1.3.1
docker_config="$HOME/.docker"
docksal_config="$HOME/.docksal"
echo "Removing the VM just to be sure"
fin vm remove
if [ -d "$docker_config" ]; then
echo "Removing local docker config files."
sudo rm -r $docker_config
fi
if [ -d "$docksal_config" ]; then
echo "Removing local docksal config files."
sudo rm -r $docksal_config
fi
fin update --tools &&
fin update --config &&
fin update
@aczietlow
Copy link
Author

The docksal project has to be somewhere within your $HOME directory. e.g. ~/Sites/Gargle.io or Users/chris/Web/Sites/Flavor/

Also check your /etc/exports file. Make sure that nothing else is attempting to mount the same directories as docksal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment