Varnish Cache is a web application accelerator also known as a caching HTTP reverse proxy. You install it in front of any server that speaks HTTP and configure it to cache the contents. Varnish Cache is really, really fast. It typically speeds up delivery with a factor of 300 - 1000x, depending on your architecture.
This image is intended as a base image for other images to built on.
FROM daemonite/varnish:4.1.0
vcl 4.0;
backend default {
.host = "www.nytimes.com";
.port = "80";
}
Then, run the commands to build and run the Docker image:
$ docker build -t my-varnish .
$ docker run -it --rm --name my-running-varnish my-varnish
You can override the port Varnish serves in your Dockerfile.
FROM daemonite/varnish:4.1.0
ENV VARNISH_PORT 8080
EXPOSE 8080
You can override the size of the cache.
FROM daemonite/varnish:4.1.0
ENV VARNISH_MEMORY 1G
You can add multiple VCL files to your image, and specify which one should be used using an environment variable when you bring the container up:
FROM daemonite/varnish:4.1.0
ENV VARNISH_VCL site_a
Varnish Modules are extensions written for Varnish Cache.
To install Varnish Modules, you will need the Varnish source to compile against. This is why we install Varnish from source in this image rather than using a package manager.
Install VMODs in your Varnish project's Dockerfile. For example, to install the Querystring module:
FROM daemonite/varnish:4.1.0
# Install Querystring Varnish module
ENV QUERYSTRING_VERSION=0.3
RUN \
cd /usr/local/src/ && \
curl -sfL https://github.com/Dridi/libvmod-querystring/archive/v$QUERYSTRING_VERSION.tar.gz -o libvmod-querystring-$QUERYSTRING_VERSION.tar.gz && \
tar -xzf libvmod-querystring-$QUERYSTRING_VERSION.tar.gz && \
cd libvmod-querystring-$QUERYSTRING_VERSION && \
./autogen.sh && \
./configure VARNISHSRC=/usr/local/src/varnish-$VARNISH_VERSION && \
make install && \
rm -r ../libvmod-querystring-$QUERYSTRING_VERSION*
View license information for the software contained in this image.
This image is supported on Docker version 1.9.1.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.