add script

This commit is contained in:
walcutt 2025-01-16 15:01:10 -05:00
parent 67b116d3a7
commit 545a09f266
2 changed files with 33 additions and 1 deletions

View File

@ -1,2 +1,8 @@
# docker-install # docker-install
pullable setup for docker for vps instances
Run script as super-user to install:
* docker
* docker compose
For use on ubuntu vps for coordinating other projects.

26
docker-install.sh Executable file
View File

@ -0,0 +1,26 @@
#!/bin/sh
# Compiled set of install directions from https://docs.docker.com/engine/install/ubuntu/
# Installs docker and runs hello-world to verify installation.
# needs su permissions.
apt-get update
apt-get install \
ca-certificates \
curl \
gnupg \
lsb-release
mkdir -m 0755 -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
docker run hello-world