Giter Club home page Giter Club logo

docker-varnish's Introduction

Docker Varnish

Build Status Tag Gitter Discourse License

Varnish Docker images for the Devilbox.

Docker Hub Upstream Project

Documentation

In case you seek help, go and visit the community pages.

devilbox.readthedocs.io gitter.im/devilbox devilbox.discourse.group

Build

# Build Varnish 4
make build-4

# Build Varnish 5
make build-5

# Build Varnish 6
make build-6

Environment variables

Variable Default value Description
VARNISH_CONFIG /etc/varnish/default.vcl Path to Varnish configuration file
CACHE_SIZE 128m Varnish Cache size
VARNISHD_PARAMS -p default_ttl=3600 -p default_grace=3600 Additional Varnish startup parameter
BACKEND_HOST localhost IP or hostname of backend server.

Important: This variable only has effect when using the bundled config. If you change VARNISH_CONFIG you need to hard-code it in your custom configuration.
BACKEND_PORT 80 Port of backend server.

Important: This variable only has effect when using the bundled config. If you change VARNISH_CONFIG you need to hard-code it in your custom configuration.

Mount points

Container path Description
/etc/varnish.d/ Mount your host directory with *.vcl files to this directory when you want to override the varnish config

Ports

By default each Varnish version exposes 6081 as its default listening port.

Default configuration

Credits for default.vcl configuration goes here:

Version Configuration
Varnish 4 https://github.com/mattiasgeniar/varnish-4.0-configuration-templates
Varnish 5 https://github.com/mattiasgeniar/varnish-5.0-configuration-templates
Varnish 6 https://github.com/mattiasgeniar/varnish-6.0-configuration-templates

Available Docker images

Docker image Varnish version
devilbox/varnish:latest Varnish 6
devilbox/varnish:6 Varnish 6
devilbox/varnish:5 Varnish 5
devilbox/varnish:4 Varnish 4

Examples

Use bundled config

Serve Varnish on port 80, use bundled config and forward Varnish requests to a webserver on 192.168.0.1 on port 8080 (which accepts HTTP and not HTTPS):

docker run -it -d --rm \
  -e BACKEND_HOST=192.168.0.1 \
  -e BACKEND_PORT=8080 \
  -p "80:6081" \
  devilbox/varnish:6

Use custom config

Important:

When using a custom config, the BACKEND_HOST and BACKEND_PORT variables will have no effect and you need to ensure to hard-code this in your custom config.

Serve Varnish on port 80, use custom config on host system (/home/users/varnish/my-varnish.vcl) and forward Varnish requests to a webserver on 192.168.0.1 on port 8080 (which accepts HTTP and not HTTPS).

docker run -it -d --rm \
  -e BACKEND_HOST=192.168.0.1 \
  -e BACKEND_PORT=8080 \
  -e VARNISH_CONFIG=/etc/varnish.d/my-varnish.vcl \
  -v "/home/users/varnish/:/etc/varnish.d/" \
  -p "80:6081" \
  devilbox/varnish:6

LICENSE

MIT License

Copyright (c) 2019 cytopia

docker-varnish's People

Contributors

cytopia avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.