Compare commits

..

4 Commits

Author SHA1 Message Date
volker.raschek 53799926cc fix
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
volker.raschek 9ea01a091b fix: migrate DC_VERSION to Dockerfile 2025-12-05 16:31:46 +01:00
volker.raschek 5e16976d26 fix(Dockerfile): print sys information
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
volker.raschek 90ac7c8c49 feat(deps): upgrade to docker-compose v5
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
8 changed files with 23 additions and 27 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
with: with:
fetch-depth: 0 fetch-depth: 0
@@ -54,7 +54,7 @@ jobs:
- name: Trigger "Push tagged images" workflow - name: Trigger "Push tagged images" workflow
if: steps.check_change.outputs.changed == 'true' if: steps.check_change.outputs.changed == 'true'
uses: actions/github-script@v9.0.0 uses: actions/github-script@v8.0.0
with: with:
script: | script: |
const workflowFileName = 'release.yaml'; const workflowFileName = 'release.yaml';
+6 -6
View File
@@ -15,9 +15,9 @@ jobs:
build-arm64: build-arm64:
runs-on: ubuntu-latest-arm64 runs-on: ubuntu-latest-arm64
steps: steps:
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v3.11.1
- name: Build image - name: Build image
run: | run: |
@@ -33,9 +33,9 @@ jobs:
build-amd64: build-amd64:
runs-on: ubuntu-latest-amd64 runs-on: ubuntu-latest-amd64
steps: steps:
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v3.11.1
- name: Build image - name: Build image
run: | run: |
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
markdown-lint: markdown-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
- uses: DavidAnson/markdownlint-cli2-action@v21.0.0 - uses: DavidAnson/markdownlint-cli2-action@v21.0.0
with: with:
globs: '**/*.md' globs: '**/*.md'
+9 -9
View File
@@ -27,15 +27,15 @@ jobs:
echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT
echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
with: with:
fetch-tags: true fetch-tags: true
ref: "${{ steps.version_extraction.outputs.version_raw }}" ref: "${{ steps.version_extraction.outputs.version_raw }}"
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v3.11.1
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v3.6.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@@ -67,15 +67,15 @@ jobs:
echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT
echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
with: with:
fetch-tags: true fetch-tags: true
ref: "${{ steps.version_extraction.outputs.version_raw }}" ref: "${{ steps.version_extraction.outputs.version_raw }}"
- uses: docker/setup-qemu-action@v4.0.0 - uses: docker/setup-qemu-action@v3.7.0
- uses: docker/setup-buildx-action@v4.0.0 - uses: docker/setup-buildx-action@v3.11.1
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v3.6.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@@ -110,7 +110,7 @@ jobs:
echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT echo "version_raw=${VERSION}" >> $GITHUB_OUTPUT
echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT echo "version_cleaned=${VERSION/v/}" >> $GITHUB_OUTPUT
- uses: docker/login-action@v4.1.0 - uses: docker/login-action@v3.6.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@@ -12,7 +12,7 @@ jobs:
update-description-on-hub-docker-io: update-description-on-hub-docker-io:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6.0.2 - uses: actions/checkout@v6.0.1
- uses: peter-evans/dockerhub-description@v5.0.0 - uses: peter-evans/dockerhub-description@v5.0.0
with: with:
username: ${{ secrets.DOCKER_IO_USERNAME }} username: ${{ secrets.DOCKER_IO_USERNAME }}
+3 -5
View File
@@ -1,6 +1,7 @@
FROM docker.io/library/ubuntu:26.04 AS download FROM docker.io/library/ubuntu:24.04 AS download
ARG DC_VERSION=v5.1.4 # renovate: datasource=github-releases depName=docker/compose
ARG DC_VERSION=v5.0.0
RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
apt update --yes && \ apt update --yes && \
@@ -19,8 +20,5 @@ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
FROM scratch FROM scratch
LABEL org.opencontainers.image.description="Define and run multi-container applications with Docker" \
io.artifacthub.package.readme-url="https://github.com/docker/compose"
COPY --from=download /tmp/docker-compose /usr/bin/docker-compose COPY --from=download /tmp/docker-compose /usr/bin/docker-compose
ENTRYPOINT [ "/usr/bin/docker-compose" ] ENTRYPOINT [ "/usr/bin/docker-compose" ]
+1 -1
View File
@@ -11,7 +11,7 @@ The workflow or how `docker-compose` can in general be used is documented at
image. image.
```bash ```bash
IMAGE_VERSION=5.1.4 IMAGE_VERSION=2.40.3
docker run \ docker run \
--rm \ --rm \
--volume "$(pwd):$(pwd)" \ --volume "$(pwd):$(pwd)" \
-2
View File
@@ -4,11 +4,9 @@
{ {
"customType": "regex", "customType": "regex",
"fileMatch": [ "fileMatch": [
"^Dockerfile$",
"^README\\.md$" "^README\\.md$"
], ],
"matchStrings": [ "matchStrings": [
"ARG DC_VERSION=(?<currentValue>.*)",
"IMAGE_VERSION=(?<currentValue>.*)" "IMAGE_VERSION=(?<currentValue>.*)"
], ],
"datasourceTemplate": "github-releases", "datasourceTemplate": "github-releases",