1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-07-05 19:17:45 +02:00
dotfiles/.dotinstall/dockerinstall.sh
2019-07-09 23:30:14 +02:00

9 lines
180 B
Bash
Executable File

#!/bin/bash
## installing docker
sudo pacman -S docker
sudo systemctl start docker.service
sudo systemctl enable docker.service
sudo groupadd docker
sudo gpasswd -a $USER docker