Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paramsiddharth/docker-static-website-lighttpd
A simple static website running within a Docker container.
https://github.com/paramsiddharth/docker-static-website-lighttpd
Last synced: about 1 month ago
JSON representation
A simple static website running within a Docker container.
- Host: GitHub
- URL: https://github.com/paramsiddharth/docker-static-website-lighttpd
- Owner: paramsiddharth
- Created: 2020-11-27T08:28:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T08:28:48.000Z (about 4 years ago)
- Last Synced: 2024-05-22T20:22:43.702Z (7 months ago)
- Language: HTML
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Static Website
A simple static website running within a Docker container.## Behind the Scenes
- It runs on top of a minimal Alpine Linux container.
- It uses `lighttpd` to serve the content.
- The website uses Bootstrap for styling.## Building
Use `Dockerfile` to build an image.
``` bash
docker build -t static_website .
```## Execution
The server runs at port 80 within the container, so remember to forward it to the desired port.
``` bash
docker run --rm -ti -p 3000:80 static_website
```
The website will be live at http://localhost:3000.# Made with ❤ by Param.