Compare commits
39
Commits
v0.2.0
..
468349f121
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
468349f121 | ||
|
|
9ddc331d51 | ||
|
|
0f77db675a | ||
|
|
1534b29728
|
||
|
|
6ed8695600
|
||
|
|
3b4f12f596 | ||
|
|
c23251eedb | ||
|
|
65aaf19b6c | ||
|
|
ca1cce0a36 | ||
|
|
8c8fbdbd93 | ||
|
|
703a6ac3a9 | ||
|
|
e1f0493129 | ||
|
|
0265f7b392
|
||
|
|
b4d95c7549
|
||
|
|
ba8ccb0a9f | ||
|
|
93e783ce1b | ||
|
|
efb73b731a
|
||
|
|
d8572c7316 | ||
|
|
6e275a82e1
|
||
|
|
75958cc30c | ||
|
|
29ca174296 | ||
|
|
1eb6d5e397
|
||
|
|
4dee9e7174
|
||
|
|
6674230f94
|
||
|
|
afe01bfa9a | ||
|
|
e59bae8972 | ||
|
|
17e293a19e | ||
|
|
15434e11a5 | ||
|
|
3ea7a0830f | ||
|
|
2bbe333e33 | ||
|
|
89d8e88450 | ||
|
|
8542126e77 | ||
|
|
76f05709ea
|
||
|
|
4b125b40b5
|
||
|
|
a0b9f6202c | ||
|
|
922bd139d9
|
||
|
|
8ff66b34fd | ||
|
|
6094939993 | ||
|
|
895bca842b |
+478
-282
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FROM docker.io/library/alpine:3.16.0
|
FROM docker.io/library/alpine:3.18.4
|
||||||
|
|
||||||
RUN echo "http://dl-3.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories
|
RUN echo "http://dl-3.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories
|
||||||
RUN apk upgrade
|
RUN apk upgrade
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# CONTAINER_RUNTIME
|
# CONTAINER_RUNTIME
|
||||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||||
# container runtime. This is needed to start and run a container image.
|
# container runtime. This is needed to start and run a container image.
|
||||||
CONTAINER_RUNTIME?=$(shell which docker)
|
CONTAINER_RUNTIME?=$(shell which podman)
|
||||||
|
|
||||||
# FETCHMAIL_IMAGE_REGISTRY_NAME
|
# FETCHMAIL_IMAGE_REGISTRY_NAME
|
||||||
# Defines the name of the new container to be built using several variables.
|
# Defines the name of the new container to be built using several variables.
|
||||||
|
|||||||
+4
-7
@@ -1,4 +1,4 @@
|
|||||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||||
{{#if build.tags}}
|
{{#if build.tags}}
|
||||||
tags:
|
tags:
|
||||||
{{#each build.tags}}
|
{{#each build.tags}}
|
||||||
@@ -7,19 +7,16 @@ tags:
|
|||||||
- "latest"
|
- "latest"
|
||||||
{{/if}}
|
{{/if}}
|
||||||
manifests:
|
manifests:
|
||||||
-
|
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
|
||||||
platform:
|
platform:
|
||||||
architecture: amd64
|
architecture: amd64
|
||||||
os: linux
|
os: linux
|
||||||
-
|
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
|
||||||
platform:
|
platform:
|
||||||
architecture: arm
|
architecture: arm
|
||||||
os: linux
|
os: linux
|
||||||
variant: v7
|
variant: v7
|
||||||
-
|
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
|
||||||
platform:
|
platform:
|
||||||
architecture: arm64
|
architecture: arm64
|
||||||
os: linux
|
os: linux
|
||||||
|
|||||||
@@ -8,8 +8,17 @@
|
|||||||
{
|
{
|
||||||
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||||
"automerge": true,
|
"automerge": true,
|
||||||
|
"excludePackagePatterns": [ "plugins/docker" ],
|
||||||
"matchManagers": "droneci",
|
"matchManagers": "droneci",
|
||||||
"matchUpdateTypes": [ "minor", "patch"]
|
"matchUpdateTypes": [ "minor", "patch"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Automatically update patch version of used container images in docker files",
|
||||||
|
"addLabels": [ "renovate/container-image", "renovate/automerge" ],
|
||||||
|
"automerge": true,
|
||||||
|
"matchBaseBranches": [ "master" ],
|
||||||
|
"matchManagers": [ "dockerfile" ],
|
||||||
|
"matchUpdateTypes": [ "patch" ]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"rebaseLabel": "renovate/rebase",
|
"rebaseLabel": "renovate/rebase",
|
||||||
|
|||||||
Reference in New Issue
Block a user