You've already forked postfixadmin-docker
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
c170aaa085 | |||
a791674861 | |||
1c6d7bbbb3
|
|||
278bb991bf
|
|||
d885a22ae4
|
|||
56570f9fb8
|
|||
e29136e73a
|
|||
6edd838968 | |||
9a58c7c040
|
@ -10,7 +10,7 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: docker.io/volkerraschek/markdownlint:0.30.0
|
||||
image: docker.io/volkerraschek/markdownlint:0.31.1
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
|
@ -1,7 +1,7 @@
|
||||
FROM docker.io/library/php:7.4-apache
|
||||
|
||||
# POSTFIXADMIN VERSION
|
||||
ARG POSTFIXADMIN_VERSION=3.3.9
|
||||
ARG POSTFIXADMIN_VERSION
|
||||
|
||||
# APACHE
|
||||
ENV APACHE_DOCUMENT_ROOT /var/www/html/public
|
||||
|
4
Makefile
4
Makefile
@ -1,3 +1,7 @@
|
||||
# POSTFIXADMIN_VERSION
|
||||
# Only required to install a specifiy version
|
||||
POSTFIXADMIN_VERSION?=3.3.11
|
||||
|
||||
# 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.
|
||||
|
@ -1,22 +1,39 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"automerge": false,
|
||||
"assignees": [ "volker.raschek" ],
|
||||
"automergeStrategy": "merge-commit",
|
||||
"automergeType": "pr",
|
||||
"labels": [ "renovate" ],
|
||||
"packageRules": [
|
||||
{
|
||||
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchManagers": "droneci",
|
||||
"matchUpdateTypes": [ "minor", "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",
|
||||
"rebaseWhen": "behind-base-branch",
|
||||
"regexManagers": [
|
||||
{
|
||||
"description": "Update postfixadmin git tag",
|
||||
"fileMatch": [
|
||||
"^Dockerfile$"
|
||||
"^Makefile$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"ARG POSTFIXADMIN_VERSION=(?<currentValue>.*?)\n"
|
||||
"POSTFIXADMIN_VERSION\\?=(?<currentValue>.*?)\n"
|
||||
],
|
||||
"depNameTemplate": "postfixadmin/postfixadmin",
|
||||
"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