We need to use diff commands to to do this. First lets get list of all … Delete all docker containersRead more
Docker
Docker Delete all images
Before you can delete a docker image, you need to delete any container that is based … Docker Delete all imagesRead more
docker-compose
To run a project docker-compose up -d Rebuild project and run docker-compose up –build To stop … docker-composeRead more
docker images
docker images command list all docker images (blueprints) available on your server. root@ok:~# docker images REPOSITORY … docker imagesRead more
Docker detach container
Docker container stop once the main program it started with stop running. If you start a … Docker detach containerRead more
portainer – Web based UI for Docker
Portainer is a web based UI for managing docker. You can run it with command docker … portainer – Web based UI for DockerRead more
Docker Login
docker login command allows you to login to docker.com. You need to login to docker before … Docker LoginRead more
docker search
docker search command allows you to search for images in docker hub. Example root@ok:~# docker search … docker searchRead more
Installing Docker on Ubuntu 16.04
To install docker on Ubuntu 16.04, run wget -qO- https://get.docker.com/ | sh To run docker commands … Installing Docker on Ubuntu 16.04Read more
Docker Build
Build a docker container with Apache docker build command is used to create a docker image … Docker BuildRead more