First commit

This commit is contained in:
2025-11-26 23:34:56 -03:00
commit a2f05b333d
4 changed files with 20 additions and 0 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
CADDY_VERSION=2.10.2

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
ARG CADDY_VERSION=2.10.0
FROM caddy:${CADDY_VERSION}-builder AS builder
RUN xcaddy build \
--with github.com/caddy-dns/cloudflare
FROM caddy:${CADDY_VERSION} AS caddy
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# Caddy
This repository provides a version of Caddy with the plugins:
- github.com/caddy-dns/cloudflare

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
services:
caddy:
image: git.bleu.builders/bleu/caddy:${CADDY_VERSION}
build:
context: .
args:
CADDY_VERSION: ${CADDY_VERSION}