Skip to content

Update nginx conf to add custom docker ip range and allow it to be set by env variable #158

Update nginx conf to add custom docker ip range and allow it to be set by env variable

Update nginx conf to add custom docker ip range and allow it to be set by env variable #158

Workflow file for this run

# Do not edit this file! Make a pull request on changing
# github/workflows/markdown.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.
### ### Markdown
###
### Lints Markdown files (`**/*.md`) in the project.
###
### [markdownlint-cli configuration
### files](https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration),
### `.markdownlint.jsonc` and `.markdownlintignore`, control what is actually
### linted and how.
###
### #### Assumptions
###
### 1. A docker compose service named `markdownlint` for running `markdownlint`
### (from
### [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli))
### exists.
name: Markdown
on:
pull_request:
push:
branches:
- main
- develop
jobs:
markdown-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Create docker network
run: |
docker network create frontend
- run: |
docker compose run --rm markdownlint markdownlint '**/*.md'