Created
April 4, 2017 10:51
-
-
Save ptantiku/39a9473f00aec3c66766236707b8e772 to your computer and use it in GitHub Desktop.
docker-compose to start python web server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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