You've already forked docker-compose-docker
Compare commits
2 Commits
d550ab732a
...
08e1f7ffc1
| Author | SHA1 | Date | |
|---|---|---|---|
|
08e1f7ffc1
|
|||
|
2e01ff466d
|
46
.gitea/workflows/markdown-linters.yaml
Normal file
46
.gitea/workflows/markdown-linters.yaml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
name: Markdown linter
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths: [ "**/*.md" ]
|
||||||
|
types: [ "opened", "reopened", "synchronize" ]
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
paths: [ "**/*.md" ]
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
workflow_dispatch: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
markdown-link-checker:
|
||||||
|
container:
|
||||||
|
image: docker.io/library/node:24.10.0-alpine
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install tooling
|
||||||
|
run: |
|
||||||
|
apk update
|
||||||
|
apk add git npm
|
||||||
|
- uses: actions/checkout@v5.0.0
|
||||||
|
- name: Verify links in markdown files
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run readme:link
|
||||||
|
|
||||||
|
markdown-lint:
|
||||||
|
container:
|
||||||
|
image: docker.io/library/node:24.10.0-alpine
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install tooling
|
||||||
|
run: |
|
||||||
|
apk update
|
||||||
|
apk add git
|
||||||
|
- uses: actions/checkout@v5.0.0
|
||||||
|
- name: Lint markdown files
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run readme:lint
|
||||||
2
Makefile
2
Makefile
@@ -1,6 +1,6 @@
|
|||||||
# DC_VERSION
|
# DC_VERSION
|
||||||
# Only required to install a specify version
|
# Only required to install a specify version
|
||||||
DC_VERSION?=v2.40.0 # renovate: datasource=github-releases depName=docker/compose
|
DC_VERSION?=v2.40.2 # renovate: datasource=github-releases depName=docker/compose
|
||||||
|
|
||||||
# CONTAINER_RUNTIME
|
# CONTAINER_RUNTIME
|
||||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and
|
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and
|
||||||
|
|||||||
@@ -6,8 +6,9 @@ This project contains all sources to build the container image `git.cryptic.syst
|
|||||||
primary goal of this project is to package the binary `docker-compose` as container image. The source code of the binary
|
primary goal of this project is to package the binary `docker-compose` as container image. The source code of the binary
|
||||||
can be found in the upstream project of [docker/compose](https://github.com/docker/compose).
|
can be found in the upstream project of [docker/compose](https://github.com/docker/compose).
|
||||||
|
|
||||||
The workflow or how `docker-compose` can in general be used is documented [here](https://docs.docker.com/compose/).
|
The workflow or how `docker-compose` can in general be used is documented at
|
||||||
Nevertheless, here are some examples of how to use the container image.
|
[docs.docker.com](https://docs.docker.com/compose/). Nevertheless, here are some examples of how to use the container
|
||||||
|
image.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
IMAGE_VERSION=2.34.0
|
IMAGE_VERSION=2.34.0
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"fileMatch": ["^README\\.md$"],
|
"fileMatch": ["^README\\.md$"],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"VERSION=(?<currentValue>.*)"
|
"IMAGE_VERSION=(?<currentValue>.*)"
|
||||||
],
|
],
|
||||||
"depNameTemplate": "volker.raschek/docker-compose",
|
"depNameTemplate": "volker.raschek/docker-compose",
|
||||||
"datasourceTemplate": "docker",
|
"datasourceTemplate": "docker",
|
||||||
|
|||||||
Reference in New Issue
Block a user