Add a script for configuring docker
This commit is contained in:
parent
f1db6b63f2
commit
4e2d7652bf
3 changed files with 14 additions and 4 deletions
|
@ -86,10 +86,6 @@ yay --noconfirm -Syu \
|
|||
python-pipenv;
|
||||
|
||||
# Docker
|
||||
yay --noconfirm -Syu \
|
||||
docker \
|
||||
docker-compose \
|
||||
docker-buildx;
|
||||
|
||||
sudo usermod -aG docker "$USER";
|
||||
|
||||
|
|
11
scripts/Arch/Software/docker/install.sh
Executable file
11
scripts/Arch/Software/docker/install.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||
|
||||
yay --noconfirm -Syu \
|
||||
docker \
|
||||
docker-compose \
|
||||
docker-buildx;
|
||||
|
||||
. "../../../Common/Config/docker/install.sh";
|
||||
|
||||
popd > /dev/null;
|
3
scripts/Common/Config/docker/install.sh
Executable file
3
scripts/Common/Config/docker/install.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
usermod -aG docker "$USER";
|
||||
sudo systemctl enable --now docker;
|
Loading…
Reference in a new issue