Dev¶
Setup instruction for my dev
eloper VM.
Docker¶
Start on AppVM Boot¶
In TemplateVM:
sudo systemctl mask docker
sudo systemctl stop docker
In AppVM add this to /rw/config/rc.local
:
systemctl umask docker
systemctl start docker.socket
Git¶
Configure Name and Mail¶
git config --global user.name "Peter Gerber"
git config --global user.email ${mail}
Configure GPG Signing¶
git config --global user.signingkey=${fingerprint}
# sign by default
git config --global commit.gpgsign=true
Check Transfered Objects¶
git config --global fetch.fsckObjects true