Skip to content

Instantly share code, notes, and snippets.

@ptantiku
Created April 4, 2017 10:51
Show Gist options
  • Save ptantiku/39a9473f00aec3c66766236707b8e772 to your computer and use it in GitHub Desktop.
Save ptantiku/39a9473f00aec3c66766236707b8e772 to your computer and use it in GitHub Desktop.
docker-compose to start python web server
version: '2'
services:
web:
image: python:2.7
volumes:
- $PWD/public_html:/web
ports:
- "443:443"
working_dir: /web
command: bash -c "python -m SimpleHTTPServer 443 2>&1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment