You've already forked docker-compose-docker
Compare commits
1 Commits
08e1f7ffc1
...
d550ab732a
| Author | SHA1 | Date | |
|---|---|---|---|
|
d550ab732a
|
@@ -1,46 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -6,9 +6,8 @@ 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 at
|
The workflow or how `docker-compose` can in general be used is documented [here](https://docs.docker.com/compose/).
|
||||||
[docs.docker.com](https://docs.docker.com/compose/). Nevertheless, here are some examples of how to use the container
|
Nevertheless, here are some examples of how to use the container image.
|
||||||
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": [
|
||||||
"IMAGE_VERSION=(?<currentValue>.*)"
|
"VERSION=(?<currentValue>.*)"
|
||||||
],
|
],
|
||||||
"depNameTemplate": "volker.raschek/docker-compose",
|
"depNameTemplate": "volker.raschek/docker-compose",
|
||||||
"datasourceTemplate": "docker",
|
"datasourceTemplate": "docker",
|
||||||
|
|||||||
Reference in New Issue
Block a user