14 lines
219 B
Bash
Executable file
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;
|