PortValhalla/scripts/Arch/Software/docker/install.sh

14 lines
219 B
Bash
Executable file

#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu \
docker \
docker-compose \
docker-buildx \
docker-scan \
;
. "../../../Common/Config/docker/install.sh";
popd > /dev/null;