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

19 lines
366 B
Fish
Raw Permalink Normal View History

2024-09-20 05:25:03 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
2024-11-01 12:12:16 +00:00
source "$dir/../../lib/software.fish"
inherit "$dir/../../../Common/Software/docker/main.fish"
2024-09-20 05:25:03 +00:00
function installSW
yayinst \
docker \
docker-compose \
docker-buildx \
docker-scan
installSWBase $argv
2024-09-20 05:25:03 +00:00
end
runInstaller $argv
end