11 lines
194 B
Bash
Executable file
11 lines
194 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
yay --noconfirm -Syu \
|
|
docker \
|
|
docker-compose \
|
|
docker-buildx;
|
|
|
|
. "../../../Common/Config/docker/install.sh";
|
|
|
|
popd > /dev/null;
|