Skip to content

Commit

Permalink
feat(container): bring all containers up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgon committed Aug 14, 2024
1 parent 46a9597 commit 0191327
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 52 deletions.
3 changes: 0 additions & 3 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
"github>deedee-ops/containers//.github/renovate/labels.json5",
"github>deedee-ops/containers//.github/renovate/semanticCommits.json5"
],
"platform": "github",
"onboarding": false,
"requireConfig": "optional",
"ignoreDeps": [
"public.ecr.aws/docker/library/ubuntu",
"node"
Expand Down
6 changes: 3 additions & 3 deletions .github/renovate/customManagers.json5
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"matchStrings": [
"(\"renovate::dataSource\":\\s*\"(?<datasource>[^\"]+)\",)?\\s*(\"renovate::depName\":\\s*\"(?<depName>[^\"]+)\",)?\\s*(\"renovate::packageName\":\\s*\"(?<packageName>[^\"]+)\",)?\\s*(\"renovate::versioning\":\\s*\"(?<versioning>[^\"]+)\",)?\\s*\"version\":\\s*\"(?<currentValue>[^\"]+)\""
],
"extractVersionTemplate": "^v?(?<version>.*)$",
"extractVersionTemplate": "^[^\\d]*(?<version>(?:\\d\\.)+\\d).*$",
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}docker{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver-coerced{{/if}}"
}, {
"customType": "regex",
"description": "Process renovate comments",
Expand All @@ -23,7 +23,7 @@
"renovate:\\s*(datasource=(?<datasource>[^\\s]+)\\s*)?(depName=(?<depName>[^\\s]+)\\s*)?(versioning=(?<versioning>[^\\s]+)\\s*)?[^:]*:\\s*(?<currentValue>v?[0-9.]+)"
],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}docker{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver-coerced{{/if}}"
}
]
}
32 changes: 15 additions & 17 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/alpine/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "public.ecr.aws/docker/library/alpine",
"version": "3.20.2",
"version": "3.20.1",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/bazarr/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"metavar": "",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/bazarr",
"version": "1.4.3",
"version": "1.4.2",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/firefly-iii/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "fireflyiii/core",
"version": "6.0.30",
"version": "6.1.18",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/home-assistant/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/home-assistant",
"version": "2024.8.0",
"version": "2024.7.4",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/jellystat/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "github-releases",
"renovate::depName": "CyferShepard/Jellystat",
"version": "1.1.0",
"version": "1.0.9",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
3 changes: 1 addition & 2 deletions apps/lldap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
ARG TARGETPLATFORM
ARG VERSION
ARG BASEIMGVERSION
FROM ghcr.io/lldap/lldap:${BASEIMGVERSION} as source
FROM ghcr.io/lldap/lldap:${VERSION} as source

Check warning on line 3 in apps/lldap/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (lldap, stable)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in apps/lldap/Dockerfile

View workflow job for this annotation

GitHub Actions / deploy / Build and test (lldap, stable)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ghcr.io/lldap/lldap:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

FROM ghcr.io/deedee-ops/alpine:3.20.2

Expand Down
13 changes: 1 addition & 12 deletions apps/lldap/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/lldap/lldap",
"version": "0.5.0",
"baseimgversion": "v0.5.0-alpine",
"platforms": [
"linux/amd64",
"linux/arm64"
]
}, {
"name": "devel",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/lldap/lldap",
"version": "latest",
"baseimgversion": "latest-alpine",
"version": "2024-07-31",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/maddy/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/foxcpp/maddy",
"version": "0.7.1",
"version": "0.7.0",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/miniflux/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/miniflux/miniflux",
"version": "2.1.4",
"version": "2.1.3",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/miniserve/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "svenstaro/miniserve",
"version": "0.27.0",
"version": "0.26.0",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/navidrome/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/navidrome/navidrome",
"version": "0.52.5",
"version": "0.52.0",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/paperless-ngx/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/paperless-ngx/paperless-ngx",
"version": "2.11.1",
"version": "2.11.3",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/prowlarr/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/prowlarr",
"renovate::versioning": "loose",
"version": "1.21.2.4649",
"version": "1.20.1.4603",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
4 changes: 2 additions & 2 deletions apps/radarr/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/radarr",
"renovate::versioning": "loose",
"version": "5.8.3.8933",
"version": "5.7.0.8882",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand All @@ -20,7 +20,7 @@
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/radarr-develop",
"renovate::versioning": "loose",
"version": "5.8.3.8933",
"version": "5.8.2.8915",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/script-exporter/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "stable",
"renovate::dataSource": "docker",
"renovate::depName": "ricoberger/script_exporter",
"version": "2.22.0",
"version": "2.21.0",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down
2 changes: 1 addition & 1 deletion apps/sonarr/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"renovate::dataSource": "docker",
"renovate::depName": "ghcr.io/onedr0p/sonarr",
"renovate::versioning": "loose",
"version": "4.0.8.1874",
"version": "4.0.7.1863",
"platforms": [
"linux/amd64",
"linux/arm64"
Expand Down

0 comments on commit 0191327

Please sign in to comment.