Add a script for configuring docker

This commit is contained in:
Manuel Thalmann 2023-04-05 14:54:35 +02:00
commit 4e2d7652bf
3 changed files with 14 additions and 4 deletions
scripts/Common/Config/docker

View file

@ -0,0 +1,3 @@
#!/bin/bash
usermod -aG docker "$USER";
sudo systemctl enable --now docker;