Skip to content

Commit

Permalink
Merge pull request #94 from basecamp/kamal-1.8.1
Browse files Browse the repository at this point in the history
Update docs for Kamal 1.8.1
  • Loading branch information
djmb authored Jul 29, 2024
2 parents f2489db + 789b0c8 commit 621be49
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _data/github.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
tag_name: v1.8.0
published_at: July 15, 2024
tag_name: v1.8.1
published_at: July 29, 2024
2 changes: 1 addition & 1 deletion docs/commands/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ Returns the version of Kamal you have installed.

```bash
$ kamal version
1.8.0
1.8.1
```
13 changes: 12 additions & 1 deletion docs/configuration/configuration-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,24 @@ title: Kamal Configuration

Configuration is read from the `config/deploy.yml`


## [Destinations](#destinations)

When running commands, you can specify a destination with the `-d` flag,
e.g. `kamal deploy -d staging`

In this case the configuration will also be read from `config/deploy.staging.yml`
and merged with the base configuration.

The available configuration options are explained below.
## [Extensions](#extensions)

Kamal will not accept unrecognized keys in the configuration file.

However, you might want to declare a configuration block using YAML anchors
and aliases to avoid repetition.

You can use prefix a configuration section with `x-` to indicate that it is an
extension. Kamal will ignore the extension and not raise an error.

## [The service name](#the-service-name)
This is a required value. It is used as the container name prefix.
Expand Down

0 comments on commit 621be49

Please sign in to comment.