PortValhalla/scripts/Arch/Software/docker/main.fish

25 lines
497 B
Fish
Raw Normal View History

2024-09-20 05:25:03 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
2024-09-21 15:31:49 +00:00
set -l base "$dir/../../../Common/Software/docker/main.fish"
2024-09-20 05:25:03 +00:00
source "$dir/../../Scripts/software.fish"
function installSW
yayinst \
docker \
docker-compose \
docker-buildx \
docker-scan
end
2024-09-21 15:31:49 +00:00
function configureSW -V base
fish "$base" configure
end
function userConfig -V base
fish "$base" userConfig $argv
2024-09-20 05:25:03 +00:00
end
runInstaller $argv
end