jsontypedef / json-typedef-docker

0 stars 1 forks source link

json-typedef-docker

This repo contains the Dockerfiles used to generate images in the jsontypedef DockerHub organization.

jtd-codegen

You can invoke jtd-codegen through Docker as follows:

docker run -v $(pwd):$(pwd) -w $(pwd) jsontypedef/jtd-codegen:vX.Y.Z [...]

Where vX.Y.Z is the version of jtd-codegen you want to use.

jtd-infer

You can invoke jtd-infer through Docker as follows:

docker run -i -v $(pwd):$(pwd) -w $(pwd) jsontypedef/jtd-infer:vX.Y.Z [...]

Where vX.Y.Z is the version of jtd-infer you want to use.

If you don't need jtd-infer's ability to read input from a file, and would rather strictly provide input through STDIN, then you can use the simpler invocation:

docker run -i jsontypedef/jtd-infer:vX.Y.Z

jtd-fuzz

You can invoke jtd-fuzz through Docker as follows:

docker run -i -v $(pwd):$(pwd) -w $(pwd) jsontypedef/jtd-fuzz:vX.Y.Z

Where vX.Y.Z is the version of jtd-fuzz you want to use.

If you don't need jtd-fuzz's ability to read input from a file, and would rather strictly provide input through STDIN, then you can use the simpler invocation:

docker run -i jsontypedef/jtd-fuzz:vX.Y.Z