- update upgrade_system to better support arch and have better error

handling

- use dracula for vim, will change

- use rootless docker socket if available
This commit is contained in:
Tony Blyler 2021-05-01 18:45:32 -04:00
parent dfe35df892
commit 307e957a52
3 changed files with 61 additions and 59 deletions
home

View file

@ -102,6 +102,11 @@ fi
alias mv='mv -i'
# if rootless docker has a unix domain socket, use it!
if [ -e "${XDG_RUNTIME_DIR}/docker.sock" ]; then
export DOCKER_HOST="unix://${XDG_RUNTIME_DIR}/docker.sock"
fi
if command -v docker-compose &> /dev/null; then
alias dco='docker-compose'
fi