Docker manifests for popular apps
- Docker setup and prior knowledge of docker and docker-compose
- Basic understanding of dockerized apps in this repo
Docker uses below for process and resource isolation
- cgroup
- namespaces
docker run --name repo alpine/git clone https://github.com/docker/getting-started.git
docker cp repo:/git/getting-started/ .
cd getting-started
docker build -t docker101tutorial .
docker run -d -p 80:80 --name docker-tutorial docker101tutorial
docker tag docker101tutorial rahilsh/docker101tutorial
docker push rahilsh/docker101tutorial
docker save nginx > nginx.tar
tar -xvf nginx.tar
docker rm -vf $(docker ps -aq)
docker rmi -f $(docker images -aq)