You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Adolfo Delorenzo c9337417ae
Dockerfile
2 years ago
.github/workflows Add github action to build 3 years ago
app Dockerfile 2 years ago
docs Edit docs/tutorial/using-bind-mounts/index.md 2 years ago
.dockerignore Initial commit 3 years ago
.gitignore Initial commit 3 years ago
Dockerfile Build amd64 and arm64 image 2 years ago
Jenkinsfile Fix build command 3 years ago
LICENSE Initial commit 3 years ago
README.md Update README.md 2 years ago
build.sh Build amd64 and arm64 image 2 years ago
docker-compose.yml Initial commit 3 years ago
mkdocs.yml Initial commit 3 years ago
requirements.txt Bump pygments from 2.6.1 to 2.7.4 2 years ago
yarn.lock Initial commit 3 years ago

README.md

Docker Getting Started Tutorial

This tutorial has been written with the intent of helping folks get up and running with containers and is designed to work with Docker Desktop. While not going too much into depth, it covers the following topics:

  • Running your first container
  • Building containers
  • Learning what containers are running and removing them
  • Using volumes to persist data
  • Using bind mounts to support development
  • Using container networking to support multi-container applications
  • Using Docker Compose to simplify the definition and sharing of applications
  • Using image layer caching to speed up builds and reduce push/pull size
  • Using multi-stage builds to separate build-time and runtime dependencies

Getting Started

If you wish to run the tutorial, you can use the following command after installing Docker Desktop:

docker run -d -p 80:80 docker/getting-started

Once it has started, you can open your browser to http://localhost.

Development

This project has a docker-compose.yml file, which will start the mkdocs application on your local machine and help you see changes instantly.

docker-compose up

Contributing

If you find typos or other issues with the tutorial, feel free to create a PR and suggest fixes!

If you have ideas on how to make the tutorial better or new content, please open an issue first before working on your idea. While we love input, we want to keep the tutorial scoped to newcomers. As such, we may reject ideas for more advanced requests and don't want you to lose any work you might have done. So, ask first and we'll gladly hear your thoughts!