@@ -198,22 +198,57 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
198198
1991991. Pull the {{kib}} Docker image.
200200
201+ ::::{tab-set}
202+
203+ :::{tab-item} Latest
201204 ` ` ` sh subs=true
202205 docker pull docker.elastic.co/kibana/kibana:{{version.stack}}
203206 ` ` `
207+ :::
208+ :::{tab-item} Specific version
209+ Replace ` < specific.version> ` with the {{kib}} version number you want. For example, you can replace ` < specific.version> ` with {{version.stack.base}}.
210+ ` ` ` sh subs=true
211+ docker pull docker.elastic.co/kibana/kibana:< specific.version>
212+ ` ` `
213+ :::
214+ ::::
204215
2052162. Optional: Verify the {{kib}} image’s signature.
206217
218+ ::::{tab-set}
219+
220+ :::{tab-item} Latest
207221 ` ` ` sh subs=true
208222 wget https://artifacts.elastic.co/cosign.pub
209223 cosign verify --key cosign.pub docker.elastic.co/kibana/kibana:{{version.stack}}
210224 ` ` `
225+ :::
226+ :::{tab-item} Specific version
227+ Replace ` < specific.version> ` with the {{kib}} version number you want. For example, you can replace ` < specific.version> ` with {{version.stack.base}}.
228+ ` ` ` sh subs=true
229+ wget https://artifacts.elastic.co/cosign.pub
230+ cosign verify --key cosign.pub docker.elastic.co/kibana/kibana:< specific.version>
231+ ` ` `
232+ :::
233+ ::::
234+
211235
2122363. Start a {{kib}} container.
213237
238+ ::::{tab-set}
239+
240+ :::{tab-item} Latest
214241 ` ` ` sh subs=true
215242 docker run --name kib01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:{{version.stack}}
216243 ` ` `
244+ :::
245+ :::{tab-item} Specific version
246+ Replace ` < specific.version> ` with the {{kib}} version number you want. For example, you can replace ` < specific.version> ` with {{version.stack.base}}.
247+ ` ` ` sh subs=true
248+ docker run --name kib01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:< specific.version>
249+ ` ` `
250+ :::
251+ ::::
217252
2182534. When {{kib}} starts, it outputs a unique generated link to the terminal. To access {{kib}}, open this link in a web browser.
2192545. In your browser, enter the enrollment token that was generated when you started {{es}}.
0 commit comments