X Tutup
The Wayback Machine - https://web.archive.org/web/20200927075637/https://github.com/pyohei/docker-cgi-python
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Docker(Ubuntu18.04) for cgi with python(2.7/3.6/3.7/3.8)

This is a simple python web server settings.
With this docker image, you can create simple web application with cgi.

How to use

# build image
docker build -t pycgi .
# run image
HASH=`docker run -p 8883:80 -d pycgi`
# exec container
docker exec -it $HASH /bin/bash

You can Access from the below URL after run docker container.

Allow Python version

  • 2.7
  • 3.6
  • 3.7
  • 3.8

References

Licence

You can’t perform that action at this time.
X Tutup