2024-06-29 02:32:50 +02:00
|
|
|
# What we need
|
|
|
|
|
|
|
|
* server with debian
|
|
|
|
* DNS entry
|
|
|
|
* SSL certificates via https://onlinetools.zfn.uni-bremen.de/server/content/onlinetools/
|
|
|
|
|
|
|
|
|
|
|
|
# Install notes
|
2024-06-29 02:26:38 +02:00
|
|
|
apt update
|
|
|
|
apt upgrade
|
|
|
|
|
|
|
|
apt install git pkg-config libssl-dev curl mc argon2 ca-certificates
|
|
|
|
|
|
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
|
|
|
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
|
|
|
|
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
|
|
|
|
echo \
|
|
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
|
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") 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
|
|
|
|
|