Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.3 KB

README.md

File metadata and controls

45 lines (29 loc) · 1.3 KB

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:
    git clone https://github.com/ajitagupta/hello-docker.git
    cd hello-docker
    
  2. Build the Docker image:
    docker build -t hello-docker .
    
  3. Run the container:
    docker run hello-docker
    
    

📂 Project Structure

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! 😊