summaryrefslogtreecommitdiff
path: root/schemas/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'schemas/readme.md')
-rw-r--r--schemas/readme.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/schemas/readme.md b/schemas/readme.md
index 65a8de98..43dff920 100644
--- a/schemas/readme.md
+++ b/schemas/readme.md
@@ -7,9 +7,10 @@ This directory contains public schemas for the most important parts of applicati
- You can validate existing config file using the following command:
```bash
-docker run --rm -v "$(pwd):/src" -w "/src" node:14-alpine sh -c \
+docker run --rm -v "$(pwd):/src" -w "/src" node:20-alpine sh -c \
"npm install -g ajv-cli && \
ajv validate --all-errors --verbose \
-s ./schemas/config/3.0.schema.json \
+ --spec=draft2019 \
-d ./.rr*.y*ml"
```