Skip to content

Instantly share code, notes, and snippets.

View Tymek's full-sized avatar

Tymoteusz Czech Tymek

View GitHub Profile
@Tymek
Tymek / server.sh
Last active February 13, 2019 00:42 — forked from jrnickell/serve-static
Simple static files server with Python in Docker
docker run \
-v $(pwd):$(pwd) \
-w $(pwd) \
-p 0.0.0.0:80:80 \
-it --rm --name="python-http-server" python:3 python \
-m http.server 80