rm prompts in code example (#3003)

replaced with line highlighting to separate input from output
This commit is contained in:
Alex Fornuto 2022-02-15 12:44:41 -06:00 committed by GitHub
parent 8987010709
commit b74dd84090
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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).
```bash
$ docker run pomerium/pomerium:v0.1.0 --version
```bash{1}
docker run pomerium/pomerium:v0.1.0 --version
v0.1.0+53bfa4e
```
- `:latest`: which will pull the [most recent tagged release](https://github.com/pomerium/pomerium/releases).
```bash
$ docker pull pomerium/pomerium:latest && docker run pomerium/pomerium:latest --version
```bash{1}
docker pull pomerium/pomerium:latest && docker run pomerium/pomerium:latest --version
v0.2.0+87e214b
```
- `: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
```