Skip to content

Commit ed96a16

Browse files
committed
Added tabs to assess this approach
1 parent 952593d commit ed96a16

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

deploy-manage/deploy/self-managed/install-elasticsearch-docker-basic.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,22 +198,57 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
198198

199199
1. 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

205216
2. 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

212236
3. 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

218253
4. When {{kib}} starts, it outputs a unique generated link to the terminal. To access {{kib}}, open this link in a web browser.
219254
5. In your browser, enter the enrollment token that was generated when you started {{es}}.

0 commit comments

Comments
 (0)