diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md index 22e05d2..b28d474 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -# httpy -HTTP server written using standard python libraries +# HTTPy +- Small HTTP server written using standard python libraries +- Server supports HTTPS if you have the keys, which you could get from `Let's Encrypt` + +# Run using docker +- build image `docker build -t httpy .` +- start a new service `docker service create --name httpy_server -p 13700:13700 httpy` +- `-p A:B` is a port mapping from port host's port `13700 (A)` to container's port `13700 (B)`, change to the port you use |