Docker: Difference between revisions

From Federal Burro of Information
Jump to navigationJump to search
No edit summary
Line 39: Line 39:
  docker ps
  docker ps
  docker ps -a
  docker ps -a
== Further reading ==
https://medium.com/@rohitkhatana/deploying-django-app-on-aws-ecs-using-docker-gunicorn-nginx-c90834f76e21
https://south.readthedocs.io/en/latest/installation.html
https://docs.djangoproject.com/en/2.0/intro/tutorial01/
https://docs.docker.com/compose/gettingstarted/#step-2-create-a-dockerfile
https://rominirani.com/docker-tutorial-series-part-6-docker-private-registry-15d1fd899255

Revision as of 02:10, 24 December 2017

Control and configure Docker with systemd


https://github.com/jpetazzo/nsenter


http://stackoverflow.com/questions/19234831/where-are-docker-images-stored-on-the-host-machine

https://docs.docker.com/engine/examples/mongodb/

https://docs.docker.com/engine/tutorials/dockerimages/


Quick

list local images

david@keres ~ $ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
mongo               latest              7f09d45df511        3 weeks ago         336.1 MB
centos              7                   61b442687d68        7 months ago        196.6 MB
david@keres ~ $

start an image

docker start 7f09d45df511
starts detached

results in a "container"

run a container:

docker run
starts with stdin + stdout to you now ( attached , interactive )

list running instances

docker ps
docker ps -a

Further reading

https://medium.com/@rohitkhatana/deploying-django-app-on-aws-ecs-using-docker-gunicorn-nginx-c90834f76e21

https://south.readthedocs.io/en/latest/installation.html

https://docs.djangoproject.com/en/2.0/intro/tutorial01/

https://docs.docker.com/compose/gettingstarted/#step-2-create-a-dockerfile

https://rominirani.com/docker-tutorial-series-part-6-docker-private-registry-15d1fd899255