Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# instalace a spuštění dockeru
dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf install docker-ce docker-ce-cli containerd.io uuid
systemctl start docker
systemctl enable docker

# stažení a spuštění potřebného docker kontejneru
docker run -d --name libreoffice --restart unless-stopped -p 8100:8100 hdejager/libreoffice-api

...