Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update code fences and remove prompt indicator #3181

Merged
merged 3 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,6 @@ and we will add you. **All** contributors belong here. 💯
- [David Gannon](https://github.com/dgannon991)
- [guangwu guo](https://github.com/testwill)
- [Eric Herrmann](https://github.com/egherrmann)
- [Alex Dejanu](https://github.com/dejanu)


20 changes: 10 additions & 10 deletions docs/content/docs/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ You will need to create a PowerShell Profile if you do not have one.

To install a bundle, you use the `porter install` command.

```console
$ porter install porter-hello --reference ghcr.io/getporter/examples/porter-hello:v0.2.0
```bash
porter install porter-hello --reference ghcr.io/getporter/examples/porter-hello:v0.2.0
```

```
Expand All @@ -57,8 +57,8 @@ This example installs version `0.2.0` of the `ghcr.io/getporter/examples/porter-

To see the list of bundle installations, use the `porter list` command.

```console
$ porter list
```bash
porter list
```

```
Expand All @@ -73,8 +73,8 @@ This `porter list` example shows bundle metadata such as the bundle installation

To see information about an installation, use the `porter show` command with the name of the installation.

```console
$ porter show porter-hello
```bash
porter show porter-hello
```
```
Name: hello
Expand All @@ -95,8 +95,8 @@ History:

To upgrade the resources managed by the bundle, use `porter upgrade`.

```console
$ porter upgrade porter-hello
```bash
porter upgrade porter-hello
```

```
Expand All @@ -111,8 +111,8 @@ execution completed successfully!

To clean up the resources installed from the bundle, use the `porter uninstall` command.

```console
$ porter uninstall porter-hello
```bash
porter uninstall porter-hello
```

## Next Steps
Expand Down
Loading