[chezmoi] Add myself to the Docker group

This commit is contained in:
Sebastian Schulze 2024-09-11 12:01:11 +02:00
parent 04ec3ef6e5
commit 054ab00484
No known key found for this signature in database
GPG key ID: F6BA63C6A7D3044E

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
if getent group docker; then
sudo usermod -a -G docker bascht
fi;