Compare commits
36
Commits
v0.2.0
..
1534b29728
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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.3
|
||||
|
||||
RUN echo "http://dl-3.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories
|
||||
RUN apk upgrade
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# CONTAINER_RUNTIME
|
||||
# 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?=$(shell which docker)
|
||||
CONTAINER_RUNTIME?=$(shell which podman)
|
||||
|
||||
# FETCHMAIL_IMAGE_REGISTRY_NAME
|
||||
# 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}}
|
||||
tags:
|
||||
{{#each build.tags}}
|
||||
@@ -7,19 +7,16 @@ tags:
|
||||
- "latest"
|
||||
{{/if}}
|
||||
manifests:
|
||||
-
|
||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
-
|
||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
platform:
|
||||
architecture: arm
|
||||
os: linux
|
||||
variant: v7
|
||||
-
|
||||
image: volkerraschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
- image: git.cryptic.systems/volker.raschek/postfixadmin-fetchmail:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
||||
|
||||
@@ -8,8 +8,17 @@
|
||||
{
|
||||
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"excludePackagePatterns": [ "plugins/docker" ],
|
||||
"matchManagers": "droneci",
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user