Go to file
2025-01-23 21:04:04 +00:00
archive Update scripts and docs to support ubunto 20.04 2025-01-13 00:32:43 +01:00
conf Some more documentation.. 2020-04-29 15:49:26 +02:00
examples/nginx Upgrade documentations.. 2020-04-29 20:34:38 +02:00
.gitignore adjust file '.gitignore'. 2020-04-29 15:52:36 +02:00
bbb-pre-install.sh bbb-pre-install.sh: fix some error installing 'docker-ce'. 2025-01-13 14:52:34 +00:00
README.accounts.18.04 Update scripts and docs to support ubunto 20.04 2025-01-13 00:32:43 +01:00
README.accounts.20.04 Add file 'README.accounts.20.04'. 2025-01-23 15:56:30 +00:00
README.allow-cross-domain-requests Add file 'README.allow-cross-domain'. 2021-01-09 15:36:08 +01:00
README.install-18.04 Add README.install-18.04 2025-01-10 21:22:14 +01:00
README.install-20.04 README.install-20.04: fqhn must not be part of '/etc/hosts' file. 2025-01-23 21:04:04 +00:00
README.install-docker Update scripts and docs to support ubunto 20.04 2025-01-13 00:32:43 +01:00

# ----------
# Eine aktuelle version von docker installieren
# ----------



# see also:
#     https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04-de


# Schritt 1 - Installieren von Docker
#
apt update

# einige vorausgesetzte Pakete, damit apt Pakete über HTTPS nutzen kann:
#
apt install apt-transport-https ca-certificates curl software-properties-common

# GPG-Schlüssel für das offizielle Docker-Repository hinzufügen:
#
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

# Docker-Repository zu APT-Quellen hinzufügen:
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"


# Paketdatenbank mit den Docker-Paketen aus dem neu hinzugefügten Repo aktiaöisieren:
#
apt update


# Note!
#
# Sicherstellen, dass Docker aus dem Docker Repo und nicht aus dem Standard-Ubuntu-Repo 
# installiert wird.
#
# dazu ausführen:
#
#     apt-cache policy docker-ce
#
# Ausgaber von 'apt-cache policy docker-ce'etwa :
#
#     agr-bbb:~ # apt-cache policy docker-ce
#     docker-ce:
#       Installed: (none)
#       Candidate: 5:27.4.1-1~ubuntu.20.04~focal
#       Version table:
#          5:27.4.1-1~ubuntu.20.04~focal 500
#             500 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages
#          ....
#


# Docker installieren:
#
apt install docker-ce


# !! Docker sollte nun installiert sein und auch nach dem booten automatisch starten. !!