renamed to match deployment script

This commit is contained in:
2025-04-11 18:46:57 +00:00
parent 2a30296bb1
commit faacc2eb12

10
docker/install.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
pacman --noconfirm -S docker docker-compose ducker
usermod -a -G docker sysadmin
mkdir -p /opt/docker
mkdir -p /etc/docker
curl -o /etc/docker/daemon.json https://git.xoservice.nl/marcel/linux_configuration/raw/master/docker/daemon.json
systemctl enable docker
echo "Docker installed, either reboot or start the daemon."
exit 0