Caddy Docker upgrade 2.10.0

1. The problem I’m having:

Apparently there is no new docker image ?
how to upgrade from 2.9 to 2.10 ?

2. Error messages and/or full log output:

NA

3. Caddy version:

v2.9.1

4. How I installed and ran Caddy:

docker compose

a. System environment:

debian 12

b. Command:

NA

c. Service/unit/compose file:

services:
  caddy:
    container_name: caddy_ext
    image: caddy:latest
    restart: unless-stopped
    ports:
      - 80:80
      - 2019:2019
      - 443:443/tcp
      - 443:443/udp
    volumes:
      - ./caddy-config:/config
      - ./caddy-data:/data
      - ./Caddyfile:/etc/caddy/Caddyfile
      - ./index.html:/usr/share/caddy/index.html
      - /root/SSL:/root/SSL
    networks:
      - default
    healthcheck:
      test: wget --quiet --tries=1 --spider http://localhost:2019/metrics|| exit 1
      interval: 10s
      timeout: 30s
      retries: 10
      start_period: 180s
    labels:
      - autoheal=true
networks:
  default:
    enable_ipv6: true
    name: caddy_ext_default

d. My complete Caddy config:

NA

5. Links to relevant resources:

NA

Docker release process is outside our control. We’re waiting on the Docker team.

1 Like

Thé image is published
Is there something special to do ?
Compose modification ? .env ?
Thank you

You’ll have to run docker compose pull, though it’s strongly unadvisable to use latest.

1 Like

OK thanks
so version 2.10 then