diff --git a/scripts/Arch/Collections/personal.sh b/scripts/Arch/Collections/personal.sh index b8954fc1..cca118f8 100755 --- a/scripts/Arch/Collections/personal.sh +++ b/scripts/Arch/Collections/personal.sh @@ -86,10 +86,6 @@ yay --noconfirm -Syu \ python-pipenv; # Docker -yay --noconfirm -Syu \ - docker \ - docker-compose \ - docker-buildx; sudo usermod -aG docker "$USER"; diff --git a/scripts/Arch/Software/docker/install.sh b/scripts/Arch/Software/docker/install.sh new file mode 100755 index 00000000..4ebd4871 --- /dev/null +++ b/scripts/Arch/Software/docker/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}" > /dev/null; + +yay --noconfirm -Syu \ + docker \ + docker-compose \ + docker-buildx; + +. "../../../Common/Config/docker/install.sh"; + +popd > /dev/null; diff --git a/scripts/Common/Config/docker/install.sh b/scripts/Common/Config/docker/install.sh new file mode 100755 index 00000000..0523e7b4 --- /dev/null +++ b/scripts/Common/Config/docker/install.sh @@ -0,0 +1,3 @@ +#!/bin/bash +usermod -aG docker "$USER"; +sudo systemctl enable --now docker;