# Container das erste Mal starten
docker run --name helloworld hello-world:nanoserver
# Zustand des Containers anzeigen
docker ps -a -f "name=helloworld"
# Alel Details zum Container anzeigen
docker inspect helloworld
# Container noch mal starten
docker start -a helloworld 
