https://github.com/webern/xmlvalidator
A container for validating xml files against an XSD
https://github.com/webern/xmlvalidator
Last synced: about 1 year ago
JSON representation
A container for validating xml files against an XSD
- Host: GitHub
- URL: https://github.com/webern/xmlvalidator
- Owner: webern
- License: other
- Created: 2021-05-06T02:25:25.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-15T03:10:16.000Z (about 5 years ago)
- Last Synced: 2025-01-24T21:24:55.536Z (over 1 year ago)
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XML Validator Container
This container allows you to validate XML files using XSD.
It also has the MusicXML schemas since that is what I am validating.
Example:
```sh
docker run --rm \
-v "${HOME}/xmlfiles:/files" \
xmllint \
--noout \
--nonet \
--schema /files/schema.xsd \
/files/file.xml
```
## License
This git repository is MIT.
Licenses for all of the software in the Docker image are in the image itself.