You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The container's working directory is `/work`. Mount your local directory there, or use `docker cp` for environments where volume mounts are restricted (e.g., Colima on macOS).
52
+
The container's working directory is `/work`. Mount your project directory there:
53
+
54
+
```bash
55
+
docker run --rm -v "$(pwd):/work" jdt2jar:latest schema.jtd.json --output schema-validator.jar --main
56
+
```
56
57
57
-
#### Option 1: Volume mount (Linux, Docker Desktop with file sharing enabled)
58
+
Validate a payload with the generated JAR:
58
59
59
60
```bash
60
-
# bash / zsh
61
-
docker run --rm -v "$(pwd):/work" ghcr.io/simbo1905/java.util.json.java21/jdt2jar:latest schema.jtd.json --output schema-validator.jar --main
0 commit comments