Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 265 Bytes

File metadata and controls

12 lines (11 loc) · 265 Bytes

Install Docker

sudo su
pacman -S docker docker-compose
systemctl enable docker
systemctl restart docker
groupadd -r -g 82 www-data
useradd -M -r -u 82 -g 82 -c "User HTTP files" -s /usr/bin/nologin www-data
exit
usermod -aG docker,www-data $(whoami)