quark is an extremely small and simple HTTP GET/HEAD-only web server for static content.
This image installs quark into alpine:edge and configures it to serve documents
placed in /srv/www. Either extend this image and place your own files in there
or use this image as-is when mounting your files in that location.
Because quark does not support configuration files, the port of this image is fixed to 5000.
The command in this image is as follows, should you want to change it:
ENTRYPOINT ["/usr/bin/quark"]
CMD ["-h", "0.0.0.0", "-p", "5000", "-d", "/srv/www"]
$ docker run -p 8080:5000 finwo/quark -v your-docroot:/srv/www
services:
mysql:
image: finwo/quark
restart: always
networks:
- default
volumes:
- your-docroot:/srv/www
ports:
- '8080:5000'
Content type
Image
Digest
Size
2.7 MB
Last updated
over 4 years ago
docker pull finwo/quark