mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-06 10:21:05 +02:00
rm prompts in code example (#3003)
replaced with line highlighting to separate input from output
This commit is contained in:
parent
8987010709
commit
b74dd84090
1 changed files with 5 additions and 5 deletions
|
@ -68,21 +68,21 @@ Pomerium utilizes a [minimal](https://github.com/GoogleContainerTools/distroless
|
||||||
|
|
||||||
- `:vX.Y.Z`: which will pull the a [specific tagged release](https://github.com/pomerium/pomerium/tags).
|
- `:vX.Y.Z`: which will pull the a [specific tagged release](https://github.com/pomerium/pomerium/tags).
|
||||||
|
|
||||||
```bash
|
```bash{1}
|
||||||
$ docker run pomerium/pomerium:v0.1.0 --version
|
docker run pomerium/pomerium:v0.1.0 --version
|
||||||
v0.1.0+53bfa4e
|
v0.1.0+53bfa4e
|
||||||
```
|
```
|
||||||
|
|
||||||
- `:latest`: which will pull the [most recent tagged release](https://github.com/pomerium/pomerium/releases).
|
- `:latest`: which will pull the [most recent tagged release](https://github.com/pomerium/pomerium/releases).
|
||||||
|
|
||||||
```bash
|
```bash{1}
|
||||||
$ docker pull pomerium/pomerium:latest && docker run pomerium/pomerium:latest --version
|
docker pull pomerium/pomerium:latest && docker run pomerium/pomerium:latest --version
|
||||||
v0.2.0+87e214b
|
v0.2.0+87e214b
|
||||||
```
|
```
|
||||||
|
|
||||||
- `:master` : which will pull an image in sync with git's [master](https://github.com/pomerium/pomerium/tree/master) branch.
|
- `:master` : which will pull an image in sync with git's [master](https://github.com/pomerium/pomerium/tree/master) branch.
|
||||||
|
|
||||||
```bash
|
```bash{1}
|
||||||
docker pull pomerium/pomerium:master
|
docker pull pomerium/pomerium:master
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue