We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63990ee commit 54fd4f9Copy full SHA for 54fd4f9
dockerfiles/caddy-acmedns/Dockerfile
@@ -0,0 +1,10 @@
1
+ARG version=2
2
+
3
+FROM caddy:$version-builder AS builder
4
5
+RUN xcaddy build \
6
+ --with github.com/caddy-dns/acmedns
7
8
+FROM caddy:$version
9
10
+COPY --from=builder /usr/bin/caddy /usr/bin/caddy
dockerfiles/caddy-acmedns/config.toml
@@ -0,0 +1,22 @@
+[[source]]
+type = "manual"
+version = "2" #this should be the same as the tag at dockerhub
+type = "docker_hub"
+namespace = "_"
+image = "caddy"
+tag = "2" #this should be the same as the tag at manual source
11
12
+type = "github_release"
13
+repo = "caddy-dns/acmedns"
14
15
+[tags]
16
+version = true
17
+semver = false
18
19
+[config]
20
+platforms = [
21
+ "linux/amd64",
22
+ ]
0 commit comments