You've already forked postfixadmin-docker
Compare commits
36 Commits
3.3.10
...
e178930855
Author | SHA1 | Date | |
---|---|---|---|
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
|
|||
c170aaa085 | |||
a791674861 | |||
1c6d7bbbb3
|
|||
278bb991bf
|
|||
d885a22ae4
|
|||
56570f9fb8
|
|||
e29136e73a
|
|||
6edd838968 | |||
9a58c7c040
|
841
.drone.yml
841
.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
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
FROM docker.io/library/php:7.4-apache
|
FROM docker.io/library/php:7.4-apache
|
||||||
|
|
||||||
# POSTFIXADMIN VERSION
|
# POSTFIXADMIN VERSION
|
||||||
ARG POSTFIXADMIN_VERSION=3.3.9
|
ARG POSTFIXADMIN_VERSION
|
||||||
|
|
||||||
# APACHE
|
# APACHE
|
||||||
ENV APACHE_DOCUMENT_ROOT /var/www/html/public
|
ENV APACHE_DOCUMENT_ROOT /var/www/html/public
|
||||||
|
6
Makefile
6
Makefile
@ -1,7 +1,11 @@
|
|||||||
|
# POSTFIXADMIN_VERSION
|
||||||
|
# Only required to install a specifiy version
|
||||||
|
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,22 +1,47 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"automerge": false,
|
"assignees": [ "volker.raschek" ],
|
||||||
"automergeStrategy": "merge-commit",
|
"automergeStrategy": "merge-commit",
|
||||||
"automergeType": "pr",
|
"automergeType": "pr",
|
||||||
|
"labels": [ "renovate" ],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||||
|
"automerge": true,
|
||||||
|
"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" ]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Trim leading postfixadmin- from git tag",
|
||||||
|
"addLabels": [ "renovate/postfixadmin" ],
|
||||||
|
"automerge": false,
|
||||||
|
"extractVersion": "^postfixadmin-(?<version>\\d+\\.\\d+\\.\\d+)$",
|
||||||
|
"matchPackageNames": [ "postfixadmin/postfixadmin" ],
|
||||||
|
"matchManagers": [ "regex" ]
|
||||||
|
}
|
||||||
|
],
|
||||||
"rebaseLabel": "renovate/rebase",
|
"rebaseLabel": "renovate/rebase",
|
||||||
"rebaseWhen": "behind-base-branch",
|
"rebaseWhen": "behind-base-branch",
|
||||||
"regexManagers": [
|
"regexManagers": [
|
||||||
{
|
{
|
||||||
"description": "Update postfixadmin git tag",
|
"description": "Update postfixadmin git tag",
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
"^Dockerfile$"
|
"^Makefile$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"ARG POSTFIXADMIN_VERSION=(?<currentValue>.*?)\n"
|
"POSTFIXADMIN_VERSION\\?=(?<currentValue>.*?)\n"
|
||||||
],
|
],
|
||||||
"depNameTemplate": "postfixadmin/postfixadmin",
|
|
||||||
"datasourceTemplate": "github-tags",
|
"datasourceTemplate": "github-tags",
|
||||||
"versioningTemplate": "regex:^(postfixadmin-)?(v)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\s"
|
"depNameTemplate": "postfixadmin/postfixadmin",
|
||||||
|
"versioningTemplate": "regex:^(postfixadmin-)?(v)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(\\s*)?$"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user