You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# und direkt aus der Registry wieder runterladen
docker run --name hello-web -p 8080:80 -d nginx-test
# laufenden Container anzeigen lassen
docker container ls
# oder alt: deprecated
docker ps
curl http://localhost:8080
#
docker rm -f hello-web