First commit
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal 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
4
README.md
Normal 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
7
docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
caddy:
|
||||
image: git.bleu.builders/bleu/caddy:${CADDY_VERSION}
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
CADDY_VERSION: ${CADDY_VERSION}
|
||||
Reference in New Issue
Block a user