Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: custom config #2

Merged
merged 1 commit into from
Feb 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile-4
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM debian:jessie-slim
MAINTAINER "cytopia" <[email protected]>

RUN set -eux \
&& mkdir /home/site && mkdir /home/site/cache
&& mkdir -p /home/site/cache \
&& mkdir -p /etc/varnish.d

# Install Varnish
RUN set -eux \
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile-5
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM debian:stretch-slim
MAINTAINER "cytopia" <[email protected]>

RUN set -eux \
&& mkdir /home/site && mkdir /home/site/cache
&& mkdir -p /home/site/cache \
&& mkdir -p /etc/varnish.d

# Install Varnish
RUN set -eux \
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile-6
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM debian:buster-slim
MAINTAINER "cytopia" <[email protected]>

RUN set -eux \
&& mkdir /home/site && mkdir /home/site/cache
&& mkdir -p /home/site/cache \
&& mkdir -p /etc/varnish.d

# Install Varnish
RUN set -eux \
Expand Down
46 changes: 44 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,15 @@ make build-6
| 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 |
| BACKEND_PORT | 80 | Port of backend server |
| BACKEND_HOST | localhost | IP or hostname of backend server.<br/><br/>**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.<br/><br/>**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
Expand Down Expand Up @@ -101,6 +108,41 @@ Credits for `default.vcl` configuration goes here:
| `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):
```bash
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).

```bash
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](LICENSE.md)**
Expand Down
28 changes: 28 additions & 0 deletions data/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
#!/usr/bin/env bash

set -e
set -o pipefail


###
### Default user/group id
###
MY_UID=1000
MY_GID=1000

if env | grep '^NEW_UID='; then
MY_UID="$( env | grep '^NEW_UID=' | sed 's/^NEW_UID=//g' )"
fi
if env | grep '^NEW_GID='; then
MY_GID="$( env | grep '^NEW_GID=' | sed 's/^NEW_GID=//g' )"
fi
chown "${MY_UID}:${MY_GID}" /etc/varnish.d


###
### Configure bundled default varnish config
###

# Extract Varnish version
# shellcheck disable=SC2034
VARNISH_VERSION="$( varnishd -V 2>&1 | grep -Eo 'varnish-[.0-9]+' | sed 's/varnish-/Varnish /g' )"

for name in BACKEND_PORT BACKEND_HOST VARNISH_VERSION
do
eval value=\$$name
# shellcheck disable=SC2154
sed -i "s|\${${name}}|${value}|g" /etc/varnish/default.vcl
done


###
### Start Varnish
###
exec bash -c \
"exec varnishd \
-a :6081 \
Expand Down