Skip to content

Commit 9facf89

Browse files
authored
Merge pull request #115 from kpumuk/grammar
Proofreading and minor corrections
2 parents 6772b9a + c3ea0eb commit 9facf89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+242
-234
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Development
44

5-
```
5+
```bash
66
bundle install
77
bundle exec jekyll serve --livereload
88
```

docs/commands/accessory.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ They are not proxied, so rebooting will have a small period of downtime. You can
1010

1111
Run `kamal accessory` to view and manage your accessories.
1212

13-
```
13+
```bash
1414
$ kamal accessory
1515
Commands:
1616
kamal accessory boot [NAME] # Boot new accessory service on host (use NAME=all to boot all accessories)
@@ -29,7 +29,7 @@ To update an accessory, update the image in your config and run `kamal accessory
2929

3030
Example:
3131

32-
```
32+
```bash
3333
$ kamal accessory boot all
3434
Running the pre-connect hook...
3535
INFO [bd04b11b] Running /usr/bin/env .kamal/hooks/pre-connect on localhost

docs/commands/app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To deploy new versions of the app, see `kamal deploy` and `kamal rollback`.
1010

1111
You can use `kamal app exec` to [run commands on servers](../running-commands-on-servers).
1212

13-
```
13+
```bash
1414
$ kamal app
1515
Commands:
1616
kamal app boot # Boot app on servers (or reboot app if already running)

docs/commands/audit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Audit
44

55
# kamal audit
66

7-
Show the latest commands to have been run on each server.
7+
Show the latest commands that have been run on each server.
88

99
```bash
1010
$ kamal audit

docs/commands/build.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Build
66

77
Build your app images and push them to your servers. These commands are called indirectly by `kamal deploy` and `kamal redeploy`.
88

9-
By default, Kamal will only build files you have committed to your git repository. However, you can configure Kamal to use the current context (instead of a git archive of HEAD) by setting the [build context](https://kamal-deploy.org/docs/configuration/builders/#build-context).
9+
By default, Kamal will only build files you have committed to your Git repository. However, you can configure Kamal to use the current context (instead of a Git archive of HEAD) by setting the [build context](https://kamal-deploy.org/docs/configuration/builders/#build-context).
1010

1111
```bash
1212
$ kamal build
@@ -22,7 +22,7 @@ Commands:
2222

2323
Examples:
2424

25-
```
25+
```bash
2626
$ kamal build push
2727
Running the pre-connect hook...
2828
INFO [92ebc200] Running /usr/bin/env .kamal/hooks/pre-connect on localhost

docs/commands/deploy.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ title: Deploy
44

55
# kamal deploy
66

7-
Build and deploy your app to all servers. By default it will build the currently checked out version of the app.
7+
Build and deploy your app to all servers. By default, it will build the currently checked out version of the app.
88

9-
Kamal will use [kamal-proxy](https://github.com/basecamp/kamal-proxy) to seamlessly move requests from the old version of the app to new without downtime.
9+
Kamal will use [kamal-proxy](https://github.com/basecamp/kamal-proxy) to seamlessly move requests from the old version of the app to the new one without downtime.
1010

1111
The deployment process is:
12-
1. Login into the docker registry locally and on all servers
13-
2. Build the app image, push it to the registry and pull it onto the servers
12+
13+
1. Log in to the Docker registry locally and on all servers.
14+
2. Build the app image, push it to the registry, and pull it onto the servers.
1415
3. Ensure kamal-proxy is running and accepting traffic on ports 80 and 443.
15-
4. Start a new container with the version of the app that matches the current git version hash.
16-
5. Tell kamal-proxy to route traffic to the new container once it is responding with `200 OK` to `GET /up`
16+
4. Start a new container with the version of the app that matches the current Git version hash.
17+
5. Tell kamal-proxy to route traffic to the new container once it is responding with `200 OK` to `GET /up`.
1718
6. Stop the old container running the previous version of the app.
1819
7. Prune unused images and stopped containers to ensure servers don't fill up.
1920

docs/commands/details.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ df8990876d14 registry:4443/app:75bf6fa40b975cbd8aec05abf7164e0982f185ac "/do
3131
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
3232
14857a6cb6b1 registry:4443/busybox:1.36.0 "sh -c 'echo \"Starti…" 42 minutes ago Up 42 minutes custom-busybox
3333
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
34-
17f3ff88ff9f registry:4443/busybox:1.36.0 "sh -c 'echo \"Starti…" 42 minutes ago Up 42 minutes custom-busybox```
34+
17f3ff88ff9f registry:4443/busybox:1.36.0 "sh -c 'echo \"Starti…" 42 minutes ago Up 42 minutes custom-busybox
3535
```

docs/commands/help.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Help
66

77
Displays help messages. Run `kamal help [command]` for details on a specific command.
88

9-
```
9+
```bash
1010
$ kamal help
1111
kamal accessory # Manage accessories (db/redis/search)
1212
kamal app # Manage application

docs/commands/init.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Init
66

77
Creates the files needed to deploy your application with `kamal`.
88

9-
```
9+
```bash
1010
$ kamal init
1111
Created configuration file in config/deploy.yml
1212
Created .kamal/secrets file

docs/commands/lock.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Manage deployment locks.
88

99
Commands that are unsafe to run concurrently will take a lock while they run. The lock is an atomically created directory in the `.kamal` directory on the primary server.
1010

11-
You can manage them directly — for example clearing a leftover lock from a failed command or preventing deployments during a maintenance window.
11+
You can manage them directly — for example, clearing a leftover lock from a failed command or preventing deployments during a maintenance window.
1212

13-
```
13+
```bash
1414
$ kamal lock
1515
Commands:
1616
kamal lock acquire -m, --message=MESSAGE # Acquire the deploy lock
@@ -26,7 +26,7 @@ $ kamal lock status
2626
INFO [f085f083] Running /usr/bin/env mkdir -p .kamal on server1
2727
INFO [f085f083] Finished in 0.146 seconds with exit status 0 (successful).
2828
There is no deploy lock
29-
$ kamal lock acquire -m "Maintanence in progress"
29+
$ kamal lock acquire -m "Maintenance in progress"
3030
INFO [d9f63437] Running /usr/bin/env mkdir -p .kamal on server1
3131
INFO [d9f63437] Finished in 0.138 seconds with exit status 0 (successful).
3232
Acquired the deploy lock
@@ -35,7 +35,7 @@ $ kamal lock status
3535
INFO [9315755d] Finished in 0.130 seconds with exit status 0 (successful).
3636
Locked by: Deployer at 2024-04-05T08:32:46Z
3737
Version: 75bf6fa40b975cbd8aec05abf7164e0982f185ac
38-
Message: Maintanence in progress
38+
Message: Maintenance in progress
3939
$ kamal lock release
4040
INFO [7d5718a8] Running /usr/bin/env mkdir -p .kamal on server1
4141
INFO [7d5718a8] Finished in 0.137 seconds with exit status 0 (successful).

docs/commands/proxy.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Kamal uses [kamal-proxy](https://github.com/basecamp/kamal-proxy) to proxy reque
1010
$ kamal proxy
1111
Commands:
1212
kamal proxy boot # Boot proxy on servers
13-
kamal proxy boot_config <set|get|reset> # Mange kamal-proxy boot configuration
13+
kamal proxy boot_config <set|get|reset> # Manage kamal-proxy boot configuration
1414
kamal proxy details # Show details about proxy container from servers
1515
kamal proxy help [COMMAND] # Describe subcommands or one specific subcommand
1616
kamal proxy logs # Show log lines from proxy on servers
@@ -29,9 +29,9 @@ You can also use [pre-proxy-reboot](../../hooks/pre-proxy-reboot) and [post-prox
2929

3030
## Boot configuration
3131

32-
You can manage boot configuration for kamal-proxy with `kamal proxy boot_config`
32+
You can manage boot configuration for kamal-proxy with `kamal proxy boot_config`.
3333

34-
```
34+
```bash
3535
$ kamal proxy boot_config --help
3636
Usage:
3737
kamal proxy boot_config <set|get|clear>
@@ -46,8 +46,8 @@ Options:
4646
[--docker-options=option=value option2=value2] # Docker options to pass to the proxy container
4747
```
4848

49-
When set the config will be stored on the server the proxy runs on.
49+
When set, the config will be stored on the server the proxy runs on.
5050

51-
If you are running more than one application on a single server, there is only one proxy and the boot config is shared, so you'll need to manage the it centrally.
51+
If you are running more than one application on a single server, there is only one proxy, and the boot config is shared, so you'll need to manage it centrally.
5252

53-
The configuration will be loaded at boot time, when calling `kamal proxy boot` or `kamal proxy reboot`.
53+
The configuration will be loaded at boot time when calling `kamal proxy boot` or `kamal proxy reboot`.

docs/commands/prune.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Prune old containers and images.
88

99
Kamal keeps the last 5 deployed containers and the images they are using. Pruning deletes all older containers and images.
1010

11-
```
11+
```bash
1212
$ kamal help prune
1313
Commands:
1414
kamal prune all # Prune unused images and stopped containers

docs/commands/registry.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Registry
44

55
# kamal registry
66

7-
Log in and out of the docker registry on your servers.
7+
Log in and out of the Docker registry on your servers.
88

99
Examples:
1010

docs/commands/remove.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ title: Remove
44

55
# kamal remove
66

7-
This will remove app, kamal-proxy and accessory containers and log out of the docker registry.
7+
This will remove the app, kamal-proxy, and accessory containers and log out of the Docker registry.
88

99
It will prompt for confirmation unless you add the `-y` option.

docs/commands/rollback.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ badb1aa51db4 registry.digitalocean.com/user/app:6ef8a6a84c525b123c5245345a8483
2222

2323
From the example above, we can see that `e5d9d7c2b898289dfbc5f7f1334140d984eedae4` was the last version, so it's available as a rollback target. We can perform this rollback by running `kamal rollback e5d9d7c2b898289dfbc5f7f1334140d984eedae4`.
2424

25-
That'll stop `6ef8a6a84c525b123c5245345a8483f86d05a123` and then start a new container running the same image as `e5d9d7c2b898289dfbc5f7f1334140d984eedae4`. Nothing to download from the registry.
25+
That'll stop `6ef8a6a84c525b123c5245345a8483f86d05a123` and then start a new container running the same image as `e5d9d7c2b898289dfbc5f7f1334140d984eedae4`. Nothing needs to be downloaded from the registry.
2626

27-
**Note:** By default old containers are pruned after 3 days when you run `kamal deploy`.
27+
**Note:** By default, old containers are pruned after 3 days when you run `kamal deploy`.

docs/commands/secrets.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Commands:
1212
kamal secrets help [COMMAND] # Describe subcommands or one specific subcommand
1313
```
1414

15-
Use these to read secrets from common password managers (currently 1Password, LastPass and Bitwarden).
15+
Use these to read secrets from common password managers (currently 1Password, LastPass, and Bitwarden).
1616

17-
The helpers will handle signing in, asking for passwords and efficiently fetching the secrets:
17+
The helpers will handle signing in, asking for passwords, and efficiently fetching the secrets:
1818

1919
These are designed to be used with [command substitution](https://github.com/bkeepers/dotenv?tab=readme-ov-file#command-substitution) in `.kamal/secrets`
2020

21-
```
21+
```shell
2222
# .kamal/secrets
2323

2424
SECRETS=$(kamal secrets fetch ...)
@@ -29,9 +29,9 @@ DB_PASSWORD=$(kamal secrets extract DB_PASSWORD $SECRETS)
2929

3030
## 1Password
3131

32-
Use the adaptor `1password`:
32+
Use the adapter `1password`:
3333

34-
```
34+
```bash
3535
# Fetch from item `MyItem` in the vault `MyVault`
3636
kamal secrets fetch --adapter 1password --account myaccount --from MyVault/MyItem REGISTRY_PASSWORD DB_PASSWORD
3737

@@ -42,7 +42,7 @@ kamal secrets fetch --adapter 1password --account myaccount --from MyVault/MyIte
4242
kamal secrets fetch --adapter 1password --account myaccount --from MyVault MyItem/REGISTRY_PASSWORD MyItem2/DB_PASSWORD
4343

4444
# Fetch from multiple vaults
45-
kamal secrets fetch --adapter 1password --account myaccount MyVault/MyItem/REGISTRY_PASSWORD MyVault2/MyItem2/DB_PASSWORD
45+
kamal secrets fetch --adapter 1password --account myaccount MyVault/MyItem/REGISTRY_PASSWORD MyVault2/MyItem2/DB_PASSWORD
4646

4747
# All three of these will extract the secret
4848
kamal secrets extract REGISTRY_PASSWORD <SECRETS-FETCH-OUTPUT>
@@ -52,9 +52,9 @@ kamal secrets extract MyVault/MyItem/REGISTRY_PASSWORD <SECRETS-FETCH-OUTPUT>
5252

5353
## LastPass
5454

55-
Use the adaptor `lastpass`:
55+
Use the adapter `lastpass`:
5656

57-
```
57+
```bash
5858
# Fetch passwords
5959
kamal secrets fetch --adapter lastpass --account [email protected] REGISTRY_PASSWORD DB_PASSWORD
6060

@@ -71,9 +71,9 @@ kamal secrets extract MyFolder/REGISTRY_PASSWORD <SECRETS-FETCH-OUTPUT>
7171

7272
## Bitwarden
7373

74-
Use the adaptor `bitwarden`:
74+
Use the adapter `bitwarden`:
7575

76-
```
76+
```bash
7777
# Fetch passwords
7878
kamal secrets fetch --adapter bitwarden --account [email protected] REGISTRY_PASSWORD DB_PASSWORD
7979

docs/commands/server.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Commands:
1414

1515
## [Bootstrap server](#bootstrap-server)
1616

17-
You can run `kamal server bootstrap` to setup docker on your hosts.
17+
You can run `kamal server bootstrap` to set up Docker on your hosts.
1818

19-
It will check if docker is installed and if not it will attempt to install it via [get.docker.com](https://get.docker.com/).
19+
It will check if Docker is installed and, if not, it will attempt to install it via [get.docker.com](https://get.docker.com/).
2020

2121
```bash
2222
$ kamal server bootstrap

docs/commands/setup.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ title: Setup
77
Kamal setup will run everything required to deploy an application to a fresh host.
88

99
It will:
10-
1. Install docker on all servers, if it has permission and it is not already installed
11-
2. Boot all accessories
12-
3. Deploy the app (see [`kamal deploy`](../deploy))
10+
11+
1. Install Docker on all servers, if it has permission and it is not already installed.
12+
2. Boot all accessories.
13+
3. Deploy the app (see [`kamal deploy`](../deploy)).

docs/commands/view-all-commands.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: View all commands
66

77
You can view all of the commands by running `kamal --help`.
88

9-
```
9+
```bash
1010
$ kamal --help
1111
Commands:
1212
kamal accessory # Manage accessories (db/redis/search)

docs/configuration/accessories.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ title: Accessories
66

77
Accessories can be booted on a single host, a list of hosts, or on specific roles. The hosts do not need to be defined in the Kamal servers configuration.
88

9-
Accessories are managed separately from the main service — they are not updated when you deploy and they do not have zero-downtime deployments.
9+
Accessories are managed separately from the main service — they are not updated when you deploy, and they do not have zero-downtime deployments.
1010

1111
Run `kamal accessory boot <accessory>` to boot an accessory. See `kamal accessory --help` for more information.
1212

1313
## [Configuring accessories](#configuring-accessories)
1414

15-
First define the accessory in the `accessories`:
15+
First, define the accessory in the `accessories`:
1616

1717
```yaml
1818
accessories:
@@ -21,23 +21,23 @@ accessories:
2121
2222
## [Service name](#service-name)
2323
24-
This is used in the service label and defaults to `<service>-<accessory>` where `<service>` is the main service name from the root configuration:
24+
This is used in the service label and defaults to `<service>-<accessory>`, where `<service>` is the main service name from the root configuration:
2525

2626
```yaml
2727
service: mysql
2828
```
2929

3030
## [Image](#image)
3131

32-
The Docker image to use, prefix with a registry if not using Docker hub:
32+
The Docker image to use, prefix it with a registry if not using Docker Hub:
3333

3434
```yaml
3535
image: mysql:8.0
3636
```
3737

3838
## [Accessory hosts](#accessory-hosts)
3939

40-
Specify one of `host`, `hosts` or `roles`:
40+
Specify one of `host`, `hosts`, or `roles`:
4141

4242
```yaml
4343
host: mysql-db1
@@ -50,15 +50,15 @@ Specify one of `host`, `hosts` or `roles`:
5050

5151
## [Custom command](#custom-command)
5252

53-
You can set a custom command to run in the container, if you do not want to use the default:
53+
You can set a custom command to run in the container if you do not want to use the default:
5454

5555
```yaml
5656
cmd: "bin/mysqld"
5757
```
5858

5959
## [Port mappings](#port-mappings)
6060

61-
See https://docs.docker.com/network/, especially note the warning about the security implications of exposing ports publicly.
61+
See https://docs.docker.com/network/, and especially note the warning about the security implications of exposing ports publicly.
6262

6363
```yaml
6464
port: "127.0.0.1:3306:3306"
@@ -92,7 +92,7 @@ See [Environment variables](../environment-variables) for more information:
9292

9393
## [Copying files](#copying-files)
9494

95-
You can specify files to mount into the container. The format is `local:remote` where `local` is the path to the file on the local machine and `remote` is the path to the file in the container.
95+
You can specify files to mount into the container. The format is `local:remote`, where `local` is the path to the file on the local machine and `remote` is the path to the file in the container.
9696

9797
They will be uploaded from the local repo to the host and then mounted.
9898

docs/configuration/aliases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ kamal console
2929

3030
Aliases are defined in the root config under the alias key.
3131

32-
Each alias is named and can only contain lowercase letters, numbers, dashes and underscores:
32+
Each alias is named and can only contain lowercase letters, numbers, dashes, and underscores:
3333

3434
```yaml
3535
aliases:

0 commit comments

Comments
 (0)