Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/idcrook/alpine-lighttpd-static
Tiny image for serving static content
https://github.com/idcrook/alpine-lighttpd-static
Last synced: 1 day ago
JSON representation
Tiny image for serving static content
- Host: GitHub
- URL: https://github.com/idcrook/alpine-lighttpd-static
- Owner: idcrook
- License: mit
- Created: 2017-02-11T16:21:24.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2025-01-13T01:17:48.000Z (8 days ago)
- Last Synced: 2025-01-13T02:27:51.336Z (8 days ago)
- Language: HTML
- Size: 58.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.arm64v8.md
- License: LICENSE
Awesome Lists containing this project
README
[dpcrook/alpine-lighttpd-static Tags | Docker Hub](https://hub.docker.com/r/dpcrook/alpine-lighttpd-static/tags)
Build arm64v8 version
=====================```shell
TAG_VERSION=14.77.0-arm64v8
sudo docker build --no-cache -t alpine-lighttpd-static:${TAG_VERSION} -f Dockerfile.arm64v8 .
sudo docker run --name "my-lighttpd" --rm -P -t -d \
-v `pwd`/static:/var/www/htdocs \
alpine-lighttpd-static:${TAG_VERSION}
sudo docker exec -it my-lighttpd /bin/sh -i
# grep ^ /var/log/lighttpd/*.log
# ls -la /var/lib/lighttpd/cache/deflate/
# exit
# sudo docker ps
# curl 0.0.0.0:32768 # get actual port from previous command output
# curl -6 [::]:32768
sudo docker stopsudo docker login
sudo docker tag alpine-lighttpd-static:${TAG_VERSION} dpcrook/alpine-lighttpd-static:${TAG_VERSION}
sudo docker push dpcrook/alpine-lighttpd-static:${TAG_VERSION}
sudo docker tag alpine-lighttpd-static:${TAG_VERSION} dpcrook/alpine-lighttpd-static:latest-arm64v8
sudo docker push dpcrook/alpine-lighttpd-static:latest-arm64v8# FIXME: add multi-arch manifest support
# docker tag alpine-lighttpd-static:${TAG_VERSION} dpcrook/alpine-lighttpd-static:latest
# docker push dpcrook/alpine-lighttpd-static:latest
```