https://github.com/bbrks/httpico
🐳🌐 Think of it as Docker's own SimpleHTTPServer. Nothing more. Nothing less.
https://github.com/bbrks/httpico
docker go golang http simplehttpserver web-server
Last synced: 2 months ago
JSON representation
🐳🌐 Think of it as Docker's own SimpleHTTPServer. Nothing more. Nothing less.
- Host: GitHub
- URL: https://github.com/bbrks/httpico
- Owner: bbrks
- License: mit
- Created: 2016-01-27T07:45:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-11T17:59:37.000Z (about 9 years ago)
- Last Synced: 2025-01-19T20:58:05.838Z (4 months ago)
- Topics: docker, go, golang, http, simplehttpserver, web-server
- Language: Makefile
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTPico
Think of it as Docker's own SimpleHTTPServer. Nothing more. Nothing less.
## Usage
The container will serve all contents of /srv over HTTP.
```sh
$ docker run -v ~/webcontent:/srv -p 8080:8080 bbrks/httpico
```## Building
```sh
$ make # Build golang binary
$ make image # Build golang binary and package in Docker image
```