Docker
INSTALL
synopsis
* imagelar için önce locale bakar. bulamaz ise dockerhub'dan çeker. yani pull etmeden run edebiliriz direk.
Hello world!
docker version
docker pull hello-world
docker images
docker run -d -> terminali detach et.
docker ps -> çalisan containerlar
docker ps -a -> çalisan ve duran history
docker inspect 89c6f2ca8ba1 -> daha detayli sonuçlar
docker start -a e139e975009f -> tekrar baslatmak için. -a attach demek.
docker logs -> detached olan containerlarin çiktilari görmek için.
docker rm ile container sileriz. -f ile çalisir durumda da olsa siler. *"docker stop " durdurur.
docker rmi
docker -p xport:yport images:ver.v -> -p xport:yport = hostun xportundan gelen istegi dockerin yportuna yönlendir.
docker exec -it /bin/bash -> -i interactiv -t terminal attach et.
DOCKER COMPOSE
Last updated