Note: this is the "per-architecture" repository for the mips64le builds of the varnish official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.
Maintained by:
the Varnish Docker Community
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
Dockerfile linksWARNING: THIS IMAGE IS NOT SUPPORTED ON THE mips64le ARCHITECTURE
Where to file issues:
https://github.com/varnish/docker-varnish/issues
Published image artifact details:
repo-info repo's repos/varnish/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/varnish label
official-images repo's library/varnish file (history)
Source of this description:
docs repo's varnish/ directory (history)
Varnish is an HTTP accelerator designed for content-heavy dynamic web sites as well as APIs. In contrast to other web accelerators, such as Squid, which began life as a client-side cache, or Apache and nginx, which are primarily origin servers, Varnish was designed as an HTTP accelerator. Varnish is focused exclusively on HTTP, unlike other proxy servers that often support FTP, SMTP and other network protocols.
$ docker run -p 8080:80 --ulimit memlock=-1:-1 --tmpfs /var/lib/varnish/varnishd:exec mips64le/varnish
You can then visit http://localhost:8080 with your browser and be greeted by the default landing page.
Note: while the --ulimit and --tmpfs options aren't necessary, they are greatly recommended. More details are available at the end of this page.
The default Varnish configuration will read the VARNISH_BACKEND_HOST environment variable which should be an HTTP or HTTPS URL, for example:
$ docker run \
--ulimit memlock=-1:-1 \
--tmpfs /var/lib/varnish/varnishd:exec \
-p 8080:80 \
-e VARNISH_BACKEND_HOST=https://example.com/ \
mips64le/varnish
By default, Varnish is extremely careful regarding what it can and cannot cache by looking at the client request and at the backend response.
Notably, Varnish will not cache if:
GET or HEADAuthorization or Cookie headerSet-Cookie headerThese rules can, of course, be overridden by providing your own VCL file, as explained in the next section.
If you already have a VCL file, you can directly mount it as /etc/varnish/default.vcl:
$ docker run \
--ulimit memlock=-1:-1 \
--tmpfs /var/lib/varnish/varnishd:exec \
-p 8080:80 \
-v /path/to/default.vcl:/etc/varnish/default.vcl:ro \
mips64le/varnish
Alternatively, a simple Dockerfile can be used to generate a new image that includes the necessary default.vcl:
FROM mips64le/varnish
COPY default.vcl /etc/varnish/
Place this file in the same directory as your default.vcl, run docker build -t my-varnish ., then start your container:
$ docker \
--ulimit memlock=-1:-1 \
--tmpfs /var/lib/varnish/varnishd:exec \
-p 8080:80 \
my-varnish
The images all ship with varnishreload which allows you to easily update the running configuration without restarting the container (and therefore losing your cache). At its most basic, you just need this:
# update the default.vcl in your container
docker cp new_default.vcl running_container:/etc/varnish/default.vcl
# run varnishreload
docker exec running_container varnishreload
Note that varnishreload also supports reloading other files (it doesn't have to be default.vcl), labels (-l), and garbage collection of old labels (-m), among others. To learn more, run
$ docker run --rm mips64le/varnish varnishreload -h
Using the included vmod-fileserver, Varnish can be used as a file server. Just mount the directory you want to expose into the /var/www/html directory and set the VARNISH_FILESERVER variable to true:
$ docker run \
--ulimit memlock=-1:-1 \
--tmpfs /var/lib/varnish/varnishd:exec \
-p 8080:80 \
-v /dir/to/expose:/var/www/html:ro \
-e VARNISH_FILESERVER=true \
mips64le/varnish
Note: Varnish will reply with an empty 200 when trying to access folders instead of individual files.
VARNISH_BACKEND_HOST)Set the backend address and protocol as explained above. This only works with the provided VCL, i.e. if you don't mount an /etc/varnish/default.vcl file, and if you don't set VARNISH_VCL_FILE
VARNISH_FILESERVER)Also only valid with the default VCL. If VARNISH_BACKEND_HOST is unset and VARNISH_FILESERVER is set, Varnish will act as a server, using /var/www/html as its source.
VARNISH_SIZE)By default, the containers will use a cache size of 100MB, which is usually a bit too small, but you can quickly set it through the VARNISH_SIZE environment variable:
$ docker run --tmpfs /var/lib/varnish/varnishd:exec -p 8080:80 -e VARNISH_SIZE=2G mips64le/varnish
VARNISH_HTTP_PORT/VARNISH_PROXY_PORT)Varnish will listen to HTTP traffic on port 80, and this can be overridden by setting the environment variable VARNISH_HTTP_PORT. Similarly, the variable VARNISH_PROXY_PORT (defaulting to 8443) dictates the listening port for the PROXY protocol used notably to interact with hitch (which, coincidentally, uses 8443 as a default too!).
# instruct varnish to listen on port 7777 instead of 80
$ docker run --tmpfs /var/lib/varnish/varnishd:exec -p 8080:7777 -e VARNISH_HTTP_PORT=7777 mips64le/varnish
VARNISH_VCL_FILE)The default Varnish configuration file is /etc/varnish/default.vcl, but this can be overridden with the VARNISH_VCL_FILE environment variable. This is useful if you want a single image that can be deployed with different configurations baked in it.
Additionally, you can add arguments to docker run after mips64le/varnish, if the first argument starts with a -, the whole list will be appended to the default command:
# extend the default keep period
$ docker run \
--ulimit memlock=-1:-1 \
--tmpfs /var/lib/varnish/varnishd:exec \
-p 8080:80 \
mips64le/varnish -p default_keep=300
If your first argument after mips64le/varnish doesn't start with -, it will be interpreted as a command to override the default one:
# show the command-line options
$ docker run mips64le/varnish varnishd -?
# list parameters usable with -p
$ docker run mips64le/varnish varnishd -x parameter
# run the server with your own parameters (don't forget -F to not daemonize)
$ docker run mips64le/varnish varnishd -F -a :8080 -b 127.0.0.1:8181 -t 600 -p feature=+http2
This can notably be used to extract logs using varnishncsa or varnishlog, running varnishstat -1 to extract metrics, and of course reloading the VCL with varnishreload.
The docker image is built with a collection of "VCL modules" or "vmods" that extend Varnish capability. We've already covered vmod-fileserver (file backend) and vmod-reqwest (dynamic backends), but more are available and can be used in your custom VCL with import <vmod_name>. Please refer to the documentation of each vmod for more information.
Varnish uses memory-mapped files to log and store metrics for performance reasons. Those files are constantly written to, and to get the most out of your system, you should:
tmpfs to make sure disk I/O isn't a bottleneck; that's what the --tmpfs switch does--ulimit switchView license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info repository's varnish/ directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.