https://github.com/ajitagupta/hello-docker
A Hello World Docker project
https://github.com/ajitagupta/hello-docker
containerization-with-docker docker hello-world python
Last synced: 3 months ago
JSON representation
A Hello World Docker project
- Host: GitHub
- URL: https://github.com/ajitagupta/hello-docker
- Owner: ajitagupta
- License: mit
- Created: 2025-01-17T18:58:26.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-17T19:07:55.000Z (4 months ago)
- Last Synced: 2025-01-17T20:18:47.884Z (4 months ago)
- Topics: containerization-with-docker, docker, hello-world, python
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello Docker 🐳
A simple "Hello World" Python application containerized with Docker. This project demonstrates the basics of creating and running a Docker container with a Python script.
## 🚀 How to Use
1. Clone the repository:
```bash
git clone https://github.com/ajitagupta/hello-docker.git
cd hello-docker2. Build the Docker image:
```bash
docker build -t hello-docker .3. Run the container:
```bash
docker run hello-docker## 📂 Project Structure
```plaintext
hello-docker/
├── Dockerfile # Docker configuration
├── hello.py # Python script
└── README.md # Documentation
```## 🛠️ Tools Used
- **Python 3.9-slim**: A lightweight official Python image used as the base for the application.
- **Docker**: A containerization platform to build, ship, and run applications in isolated environments.## 🌟 Features
- **Simple and Lightweight**: A basic Python application demonstrating Docker containerization.
- **Quick Setup**: Easy to build and run with minimal configuration.
- **Beginner-Friendly**: Perfect for understanding Docker basics and creating your first containerized application.
- **Portable**: The app runs consistently across different environments using Docker.Feel free to fork, star ⭐, and contribute! 😊