Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AtomGraph/saxon-docker
Dockerized Saxon-HE (XSLT 3.0 processor)
https://github.com/AtomGraph/saxon-docker
docker-image saxon xml xslt xslt-3
Last synced: 1 day ago
JSON representation
Dockerized Saxon-HE (XSLT 3.0 processor)
- Host: GitHub
- URL: https://github.com/AtomGraph/saxon-docker
- Owner: AtomGraph
- Created: 2019-05-02T11:55:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-21T21:43:18.000Z (almost 3 years ago)
- Last Synced: 2024-08-02T15:45:39.293Z (3 months ago)
- Topics: docker-image, saxon, xml, xslt, xslt-3
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/atomgraph/saxon
- Size: 2.93 KB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# saxon-docker
Dockerized Saxon-HE (XSLT 3.0 processor)## Usage
docker run --rm -v "$PWD/xml/source.xml":"/xml/source.xml" -v "$PWD/xsl/stylesheet.xsl":"/xsl/stylesheet.xsl" atomgraph/saxon -s:/xml/source.xml -xsl:/xsl/stylesheet.xsl param=value
Note that we use `$PWD` in order to make host filepath absolute, as required by Docker's [`-v` (volume) option](https://docs.docker.com/engine/reference/run/#volume-shared-filesystems).
## Documentation
Saxon's [Running XSLT from the Command Line](https://www.saxonica.com/documentation/index.html#!using-xsl/commandline)