Welcome to the Docker Learn repository. This repository is dedicated to documenting my journey and learnings about Docker.
Instructions on how to install Docker on various operating systems.
- Download Docker Desktop from the official website.
- Run the installer and follow the on-screen instructions.
- Verify the installation by running
docker --versionin the command prompt.
- Download Docker Desktop from the official website.
- Open the downloaded
.dmgfile and drag Docker to the Applications folder. - Verify the installation by running
docker --versionin the terminal.
- Follow the instructions on the official Docker documentation for your specific distribution.
- Verify the installation by running
docker --versionin the terminal.
A list of basic Docker commands and their usage.
docker run: Run a container from an image.docker ps: List running containers.docker stop: Stop a running container.docker build: Build an image from a Dockerfile.docker pull: Pull an image from a registry.docker push: Push an image to a registry.
Examples and explanations of Dockerfiles used to build Docker images.
Information on using Docker Compose to manage multi-container applications.