|
8 | 8 | "properties": { |
9 | 9 | "dockerfile": { |
10 | 10 | "description": "Path to the Dockerfile on the repository. Defaults to /Dockerfile", |
| 11 | + "examples": ["./packages/api/custom.Dockerfile"], |
| 12 | + "default": "./Dockerfile", |
11 | 13 | "type": "string" |
12 | 14 | }, |
13 | 15 | "context": { |
14 | 16 | "description": "Docker context (cwd) when building the image. Defaults to .", |
| 17 | + "examples": ["./packages/api"], |
| 18 | + "default": ".", |
15 | 19 | "type": "string" |
16 | 20 | }, |
17 | 21 | "registrySecretRefName": { |
|
20 | 24 | }, |
21 | 25 | "registry": { |
22 | 26 | "description": "Url of your custom docker registry", |
| 27 | + "examples": ["ghcr.io"], |
23 | 28 | "type": "string" |
24 | 29 | }, |
25 | 30 | "imagePackage": { |
26 | | - "description": "Name of the dockerfile on the registry", |
| 31 | + "description": "Name of the docker image on the registry", |
| 32 | + "examples": ["app"], |
27 | 33 | "type": "string" |
28 | 34 | }, |
29 | 35 | "imageProject": { |
30 | 36 | "description": "Optional project name in the docker registry", |
| 37 | + "examples": ["project"], |
31 | 38 | "type": "string" |
32 | 39 | }, |
33 | 40 | "imageRepository": { |
|
62 | 69 | "type": "string" |
63 | 70 | }, |
64 | 71 | "buildkitServiceAddr": { |
65 | | - "description": "Adress of the buildkit service. defaults to `tcp://buildkit-service.buildkit-service.svc:1234`", |
| 72 | + "description": "Address of the buildkit service. defaults to `tcp://buildkit-service.buildkit-service.svc:1234`", |
66 | 73 | "type": "string", |
67 | 74 | "examples": ["tcp://buildkit-service.buildkit-service.svc:1234"] |
68 | | - } |
| 75 | + } |
69 | 76 | }, |
70 | 77 | "definitions": { |
71 | 78 | "build-args": { |
72 | | - "description": "Build args to customize the docker build", |
| 79 | + "title": "Docker image build arguments", |
| 80 | + "markdownDescription": "Build args to customize the docker, see [docker documentation](https://docs.docker.com/engine/reference/commandline/build/#build-arg)", |
73 | 81 | "type": "object", |
74 | 82 | "additionalProperties": true |
75 | 83 | } |
|
0 commit comments