The porpuse of this repo is to learn docker while doing some personalized examples with small applications.
All of the folders will have a Docker file that will describe the docker version they work with.
- Install Docker: Docker Installation Guide
- Basic knowledge of command-line usage.
- Clone the repository:
git clone https://github.com/yourusername/docker-examples.git cd docker-examples - Navigate to the folder of the example you want to run.
- Build the Docker image:
docker build -t example-image . - Run the Docker container:
docker run -p 8080:8080 example-image
example1/: Description of example 1.example2/: Description of example 2.example3/: Description of example 3.
Contributions are welcome! Feel free to open issues or submit pull requests.
This project is licensed under the MIT License. See the LICENSE file for details.