This is a little docker image for hosting static content efficiently. Supports ETags & Brotli/GZip compression out of the box.
Automatically builds the latest mainline and stable releases weekly.
- Brotli & GZip
- ETag
- No server tokens
Tags follow the official nginx naming convention.
mainline
, same aslatest
stable
- Specific version
# docker-compose.yml
version: '3.7'
services:
server:
image: cupcakearmy/static
restart: unless-stopped
ports:
- 80:80
volumes:
- ./public:/srv:ro
docker-compose up -d
# my.conf
server {
listen 80;
server_name _;
location / {
root /srv;
try_files $uri /index.html =404;
}
}
version: '3.7'
services:
server:
# ...
volumes:
- ./my.conf:/usr/local/nginx/conf/sites/default.conf
# ...