Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 380 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 380 Bytes

Simple Python Http Server Docker Image

Introduction

How to build

docker build . -t simple-http-server

How to run

Usage:

The container the following mounted folders

  • "/data" --> mount the folder to be served

Run the container with:

docker run  \
    --rm \
    -it \
    -v /PATH/TO/MOUNT:/data \
    -p 8080:8080 \
    simple-http-server