You've already forked postfixadmin-docker
Compare commits
42 Commits
3.3.11
...
740d1952d8
| Author | SHA1 | Date | |
|---|---|---|---|
| 740d1952d8 | |||
| 07d3324d9d | |||
| 4fc1bf1ec6 | |||
| 78c6c95656 | |||
| 9c67388f8b | |||
| 4dfb4713d2 | |||
| 78b9a76f1c | |||
|
71a836b793
|
|||
|
757be24beb
|
|||
|
1f4487eaf1
|
|||
|
c5f8356ea6
|
|||
| 3e58957c14 | |||
| 54d4536a9a | |||
|
67c006d66f
|
|||
|
664522903b
|
|||
| e178930855 | |||
| 5ffaeaf154 | |||
| 48e7462fca | |||
| 986b7cf384 | |||
| d7476f906e | |||
|
bd04e5fda8
|
|||
|
f7d5017a81
|
|||
| da7534f2e1 | |||
|
eff75dc62a
|
|||
|
e652984bda
|
|||
| 9dc56df49d | |||
|
836fbcbce5
|
|||
|
1889fd0e92
|
|||
|
4bdc3f00a1
|
|||
|
a8f431e1e2
|
|||
| 676e4e9dc5 | |||
| 663759caf5 | |||
| 0955ae62ed | |||
| 6e4d59cd9f | |||
|
6bb3bb38de
|
|||
|
c5e351df7f
|
|||
| 2a3d60f01c | |||
|
f639dac5e2
|
|||
| 0edab8edaf | |||
|
06d2da8ec4
|
|||
|
ceb3a08682
|
|||
|
b3e042a8dc
|
747
.drone.yml
747
.drone.yml
File diff suppressed because it is too large
Load Diff
@@ -128,8 +128,8 @@ MD041:
|
|||||||
# MD044/proper-names - Proper names should have the correct capitalization
|
# MD044/proper-names - Proper names should have the correct capitalization
|
||||||
MD044:
|
MD044:
|
||||||
# List of proper names
|
# List of proper names
|
||||||
names:
|
names: []
|
||||||
- PostfixAdmin
|
# - PostfixAdmin
|
||||||
# Include code blocks
|
# Include code blocks
|
||||||
code_blocks: false
|
code_blocks: false
|
||||||
|
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -1,11 +1,11 @@
|
|||||||
# POSTFIXADMIN_VERSION
|
# POSTFIXADMIN_VERSION
|
||||||
# Only required to install a specifiy version
|
# Only required to install a specifiy version
|
||||||
POSTFIXADMIN_VERSION?=3.3.11
|
POSTFIXADMIN_VERSION?=3.3.13
|
||||||
|
|
||||||
# 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)
|
||||||
|
|
||||||
# POSTFIXADMIN_IMAGE_REGISTRY_NAME
|
# POSTFIXADMIN_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.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
image: volkerraschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
image: git.cryptic.systems/volker.raschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||||
{{#if build.tags}}
|
{{#if build.tags}}
|
||||||
tags:
|
tags:
|
||||||
{{#each build.tags}}
|
{{#each build.tags}}
|
||||||
@@ -8,18 +8,12 @@ tags:
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
manifests:
|
manifests:
|
||||||
-
|
-
|
||||||
image: volkerraschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
image: git.cryptic.systems/volker.raschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||||
platform:
|
platform:
|
||||||
architecture: amd64
|
architecture: amd64
|
||||||
os: linux
|
os: linux
|
||||||
-
|
-
|
||||||
image: volkerraschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-armv7
|
image: git.cryptic.systems/volker.raschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
os: linux
|
|
||||||
variant: v7
|
|
||||||
-
|
|
||||||
image: volkerraschek/postfixadmin:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
|
||||||
platform:
|
platform:
|
||||||
architecture: arm64
|
architecture: arm64
|
||||||
os: linux
|
os: linux
|
||||||
|
|||||||
@@ -11,6 +11,14 @@
|
|||||||
"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" ]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "Trim leading postfixadmin- from git tag",
|
"description": "Trim leading postfixadmin- from git tag",
|
||||||
"addLabels": [ "renovate/postfixadmin" ],
|
"addLabels": [ "renovate/postfixadmin" ],
|
||||||
|
|||||||
Reference in New Issue
Block a user