Add scripts for installing docker

This commit is contained in:
Manuel Thalmann 2024-09-20 07:25:03 +02:00
parent 21fa6708d7
commit 15e725ffaf
3 changed files with 35 additions and 0 deletions
scripts/Arch/Software/docker

View file

@ -0,0 +1,19 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW
yayinst \
docker \
docker-compose \
docker-buildx \
docker-scan
end
function configureSW -V dir
fish "$dir/../../../Common/Software/docker/main.fish" configure
end
runInstaller $argv
end