25 lines
497 B
Fish
Executable file
25 lines
497 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
set -l base "$dir/../../../Common/Software/docker/main.fish"
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW
|
|
yayinst \
|
|
docker \
|
|
docker-compose \
|
|
docker-buildx \
|
|
docker-scan
|
|
end
|
|
|
|
function configureSW -V base
|
|
fish "$base" configure
|
|
end
|
|
|
|
function userConfig -V base
|
|
fish "$base" userConfig $argv
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|