Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 311 Bytes

docker-example-nginx.md

File metadata and controls

16 lines (12 loc) · 311 Bytes

Beispiel nginx

docker run --name test-nginx -d -p 8080:80 nginx

docker container ls
lsof -i
cat /etc/services | grep 8080
curl http://localhost:8080
docker container ls
# wenn der container gestoppt wird, keine ausgabe mehr, weil kein webserver
docker stop test-nginx 
curl http://localhost:8080