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

16 lines
292 B
Fish
Raw 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"
2024-09-20 05:25:03 +00:00
function configureSW -V dir
sudo systemctl enable --now docker
end
function userConfig -a name
sudo usermod -aG docker "$name"
end
runInstaller $argv
end