Docker Dynamic Upstreams for Caddy.

July 10, 2026 · View on GitHub

This package implements a docker dynamic upstreams module for Caddy.

Requires Caddy 2+.

Installation

Download from official website or build yourself using xcaddy.

Here is a Dockerfile example.

FROM caddy:<version>-builder AS builder

RUN xcaddy build \
    --with github.com/invzhi/caddy-docker-upstreams

FROM caddy:<version>

COPY --from=builder /usr/bin/caddy /usr/bin/caddy

Caddyfile Syntax

List all your domain or use On-Demand TLS.

app1.example.com,
app2.example.com,
app3.example.com {
    reverse_proxy {
        dynamic docker
    }
}

Selecting containers by label

By default every enabled container is a candidate, and the request matchers (host, path, …) decide which ones serve a request. When several containers are otherwise indistinguishable — for example replicas of two Compose services on the same address — you can narrow the candidates by their Docker labels:

localhost:8080 {
    reverse_proxy {
        dynamic docker {
            label com.docker.compose.service first
        }
    }
}

A container is selected only if it matches every label directive. Listing several values for one key matches any of them (OR); repeating a key unions its values:

dynamic docker {
    label com.docker.compose.service first second
    label com.docker.compose.project demo
}

Because this selects on container metadata rather than the request, it works with any Docker label — the Compose service name (com.docker.compose.service) is just the common case.

Setting the upstream port

When every backend listens on the same port, set it once in the Caddyfile instead of repeating the com.caddyserver.http.upstream.port label on each container:

localhost:8080 {
    reverse_proxy {
        dynamic docker {
            port 8080
        }
    }
}

This is also useful if the container provides multiple endpoints (i.e. listens on more than one port):

localhost:8080 {
    reverse_proxy /admin {
        dynamic docker {
            port 8081
        }
    }

    reverse_proxy {
        dynamic docker {
            port 8080
        }
    }
}

A port configured here takes precedence over the label and makes it optional. Without port, each container must still carry the label.

Docker Labels

This module requires the Docker Labels to provide the necessary information.

LabelDescription
com.caddyserver.http.enablerequired, should be true
com.caddyserver.http.networkoptional, specify the docker network which caddy connecting through (if it is empty, the first network of container will be specified)
com.caddyserver.http.upstream.portrequired unless the Caddyfile port is set, specify the port

As well as the labels corresponding to the matcher.

LabelMatcherType
com.caddyserver.http.matchers.protocolprotocolstring
com.caddyserver.http.matchers.hosthost[]string
com.caddyserver.http.matchers.methodmethod[]string
com.caddyserver.http.matchers.pathpath[]string
com.caddyserver.http.matchers.queryquerystring
com.caddyserver.http.matchers.expressionexpressionstring

Here is a docker-compose.yml example with vaultwarden.

vaultwarden:
  image: vaultwarden/server:${VAULTWARDEN_VERSION:-latest}
  restart: unless-stopped
  volumes:
    - ${VAULTWARDEN_ROOT}:/data
  labels:
    com.caddyserver.http.enable: true
    com.caddyserver.http.upstream.port: 80
    com.caddyserver.http.matchers.host: "vaultwarden.example.com bitwarden.example.com"
  environment:
    DOMAIN: https://vaultwarden.example.com

Docker Client

Environment variables could configure the docker client:

  • DOCKER_HOST to set the URL to the docker server.
  • DOCKER_API_VERSION to set the version of the API to use, leave empty for latest.
  • DOCKER_CERT_PATH to specify the directory from which to load the TLS certificates ("ca.pem", "cert.pem", "key.pem').
  • DOCKER_TLS_VERIFY to enable or disable TLS verification (off by default).