You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/commands/build.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: Build
6
6
7
7
Build your app images and push them to your servers. These commands are called indirectly by `kamal deploy` and `kamal redeploy`.
8
8
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).
10
10
11
11
```bash
12
12
$ kamal build
@@ -22,7 +22,7 @@ Commands:
22
22
23
23
Examples:
24
24
25
-
```
25
+
```bash
26
26
$ kamal build push
27
27
Running the pre-connect hook...
28
28
INFO [92ebc200] Running /usr/bin/env .kamal/hooks/pre-connect on localhost
Copy file name to clipboardexpand all lines: docs/commands/deploy.md
+7-6
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,17 @@ title: Deploy
4
4
5
5
# kamal deploy
6
6
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.
8
8
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.
10
10
11
11
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.
14
15
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`.
17
18
6. Stop the old container running the previous version of the app.
18
19
7. Prune unused images and stopped containers to ensure servers don't fill up.
Copy file name to clipboardexpand all lines: docs/commands/lock.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ Manage deployment locks.
8
8
9
9
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.
10
10
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.
12
12
13
-
```
13
+
```bash
14
14
$ kamal lock
15
15
Commands:
16
16
kamal lock acquire -m, --message=MESSAGE # Acquire the deploy lock
@@ -26,7 +26,7 @@ $ kamal lock status
26
26
INFO [f085f083] Running /usr/bin/env mkdir -p .kamal on server1
27
27
INFO [f085f083] Finished in 0.146 seconds with exit status 0 (successful).
28
28
There is no deploy lock
29
-
$ kamal lock acquire -m "Maintanence in progress"
29
+
$ kamal lock acquire -m "Maintenance in progress"
30
30
INFO [d9f63437] Running /usr/bin/env mkdir -p .kamal on server1
31
31
INFO [d9f63437] Finished in 0.138 seconds with exit status 0 (successful).
32
32
Acquired the deploy lock
@@ -35,7 +35,7 @@ $ kamal lock status
35
35
INFO [9315755d] Finished in 0.130 seconds with exit status 0 (successful).
36
36
Locked by: Deployer at 2024-04-05T08:32:46Z
37
37
Version: 75bf6fa40b975cbd8aec05abf7164e0982f185ac
38
-
Message: Maintanencein progress
38
+
Message: Maintenancein progress
39
39
$ kamal lock release
40
40
INFO [7d5718a8] Running /usr/bin/env mkdir -p .kamal on server1
41
41
INFO [7d5718a8] Finished in 0.137 seconds with exit status 0 (successful).
Copy file name to clipboardexpand all lines: docs/commands/proxy.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Kamal uses [kamal-proxy](https://github.com/basecamp/kamal-proxy) to proxy reque
10
10
$ kamal proxy
11
11
Commands:
12
12
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
14
14
kamal proxy details # Show details about proxy container from servers
15
15
kamal proxy help [COMMAND] # Describe subcommands or one specific subcommand
16
16
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
29
29
30
30
## Boot configuration
31
31
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`.
33
33
34
-
```
34
+
```bash
35
35
$ kamal proxy boot_config --help
36
36
Usage:
37
37
kamal proxy boot_config <set|get|clear>
@@ -46,8 +46,8 @@ Options:
46
46
[--docker-options=option=value option2=value2] # Docker options to pass to the proxy container
47
47
```
48
48
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.
50
50
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.
52
52
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`.
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`.
24
24
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.
26
26
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`.
Copy file name to clipboardexpand all lines: docs/commands/secrets.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ Commands:
12
12
kamal secrets help [COMMAND] # Describe subcommands or one specific subcommand
13
13
```
14
14
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).
16
16
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:
18
18
19
19
These are designed to be used with [command substitution](https://github.com/bkeepers/dotenv?tab=readme-ov-file#command-substitution) in `.kamal/secrets`
Copy file name to clipboardexpand all lines: docs/configuration/accessories.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ title: Accessories
6
6
7
7
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.
8
8
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.
10
10
11
11
Run `kamal accessory boot <accessory>` to boot an accessory. See `kamal accessory --help` for more information.
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:
25
25
26
26
```yaml
27
27
service: mysql
28
28
```
29
29
30
30
## [Image](#image)
31
31
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:
33
33
34
34
```yaml
35
35
image: mysql:8.0
36
36
```
37
37
38
38
## [Accessory hosts](#accessory-hosts)
39
39
40
-
Specify one of `host`, `hosts` or `roles`:
40
+
Specify one of `host`, `hosts`, or `roles`:
41
41
42
42
```yaml
43
43
host: mysql-db1
@@ -50,15 +50,15 @@ Specify one of `host`, `hosts` or `roles`:
50
50
51
51
## [Custom command](#custom-command)
52
52
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:
54
54
55
55
```yaml
56
56
cmd: "bin/mysqld"
57
57
```
58
58
59
59
## [Port mappings](#port-mappings)
60
60
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.
62
62
63
63
```yaml
64
64
port: "127.0.0.1:3306:3306"
@@ -92,7 +92,7 @@ See [Environment variables](../environment-variables) for more information:
92
92
93
93
## [Copying files](#copying-files)
94
94
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.
96
96
97
97
They will be uploaded from the local repo to the host and then mounted.
0 commit comments