https://github.com/deeagle/xmllint-container
Container includes xmllint to validate xml data against dtd and xsd
https://github.com/deeagle/xmllint-container
cicd docker xmllint
Last synced: 5 months ago
JSON representation
Container includes xmllint to validate xml data against dtd and xsd
- Host: GitHub
- URL: https://github.com/deeagle/xmllint-container
- Owner: deeagle
- License: gpl-3.0
- Created: 2022-05-04T16:04:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-10T09:25:38.000Z (6 months ago)
- Last Synced: 2025-12-10T12:34:25.728Z (6 months ago)
- Topics: cicd, docker, xmllint
- Language: Shell
- Homepage:
- Size: 80.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# XML Tools Container for CI-CD


[](https://img.shields.io/badge/Alpine_Linux-0D597F?style=flat-square&logo=alpine-linux&logoColor=white)
[](https://hub.docker.com/r/docdee/xmllint)
This container provides a pre-installed environment with various XML tools for use in CI-CD pipelines.
## What's included
This container comes with the following XML tools pre-installed:
- `xmllint`
- `xsltproc`
- `rsync`
## Usage
You can check your different formats via the following example commands:
- DTD
```bash
xmllint --dtdvalid schema.dtd --noout file.txt
```
- XSD
```bash
xmllint --schema schema.xsd --noout file.xml
```
- XSLT
```bash
xsltproc file.xsl
```
## Weblinks
- [CHANGELOG](CHANGELOG.md)