Compare commits

..

4 Commits

Author SHA1 Message Date
53799926cc fix
All checks were successful
Auto release / tag_on_change (push) Successful in 5s
Build / build-amd64 (push) Successful in 34s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 1m18s
2025-12-05 17:36:02 +01:00
9ea01a091b fix: migrate DC_VERSION to Dockerfile 2025-12-05 16:31:46 +01:00
5e16976d26 fix(Dockerfile): print sys information
Some checks failed
Build / build-amd64 (push) Failing after 32s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Failing after 1m21s
2025-12-05 16:26:02 +01:00
90ac7c8c49 feat(deps): upgrade to docker-compose v5
Some checks failed
Build / build-amd64 (push) Failing after 31s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Failing after 1m40s
The following downloads the finished docker-compose v5 binary and delivers it as
a scratch container image.
2025-12-05 16:22:32 +01:00
3 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
FROM docker.io/library/ubuntu:24.04 AS download
# renovate: datasource=github-releases depName=docker/compose
ARG DC_VERSION=v5.0.0
RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \

View File

@@ -11,7 +11,7 @@ The workflow or how `docker-compose` can in general be used is documented at
image.
```bash
IMAGE_VERSION=5.0.0
IMAGE_VERSION=2.40.3
docker run \
--rm \
--volume "$(pwd):$(pwd)" \

View File

@@ -4,11 +4,9 @@
{
"customType": "regex",
"fileMatch": [
"^Dockerfile$",
"^README\\.md$"
],
"matchStrings": [
"ARG DC_VERSION=(?<currentValue>.*)",
"IMAGE_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",