Fix external network configuration #77
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| check-docker-compose-syntax: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker:latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Copy env file | |
| run: cp .env.traefik.dist .env.traefik | |
| - name: Check Docker Compose file syntax | |
| run: docker compose --env-file .env.dist config -q | |
| check-markdown-syntax: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Lint Markdown | |
| uses: DavidAnson/markdownlint-cli2-action@v19 | |
| with: | |
| globs: '**/*.md' |