Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Docker Tutorial Notebook

This repository contains a simple example of running a Flask application inside a Docker container. Use this repo as your notebook for Docker experiments and learning.

Project Structure

  • app.py: Minimal Flask web application.
  • Dockerfile: Instructions to build the Docker image.
  • requirements.txt: Python dependencies.
  • README.md: This notebook and reference guide.

Getting Started

Build the Docker Image

docker build -t flask-docker-tutorial .

Run the Container

docker run -p 5000:5000 flask-docker-tutorial

Visit http://localhost:5000 in your browser. You should see:

Hello, World!

Useful Links

Docker Hub


About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages