Skip to content

Commit

Permalink
Replaced 'docker' with 'Docker' in the prose
Browse files Browse the repository at this point in the history
  • Loading branch information
kpumuk committed Sep 29, 2024
1 parent a53d0d2 commit 9e78352
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion v1/docs/commands/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Build and deploy your app to all servers. By default it will build the currently
Kamal will use the Traefik proxy to seamlessly move requests from the old version of the app to new without downtime.

The deployment process is:
1. Login into the docker registry locally and on all servers

1. Login into the Docker registry locally and on all servers
2. Build the app image, push it to the registry and pull it onto the servers
3. Ensure Traefik is booted
4. Check the image boots on one server
Expand Down
2 changes: 1 addition & 1 deletion v1/docs/commands/registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Registry

# kamal registry

Log in and out of the docker registry on your servers.
Log in and out of the Docker registry on your servers.

Examples:

Expand Down
2 changes: 1 addition & 1 deletion v1/docs/commands/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Remove

# kamal remove

This will remove app, Traefik and accessory containers and log out of the docker registry.
This will remove app, Traefik and accessory containers and log out of the Docker registry.

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

Expand Down
4 changes: 2 additions & 2 deletions v1/docs/commands/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Commands:

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

You can run `kamal server bootstrap` to setup docker on your hosts.
You can run `kamal server bootstrap` to setup Docker on your hosts.

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

```bash
$ kamal server bootstrap
Expand Down
3 changes: 2 additions & 1 deletion v1/docs/commands/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ title: Setup
Kamal setup will run everything required to deploy an application to a fresh host.

It will:
1. Install docker on all servers, if it has permission and it is not already installed

1. Install Docker on all servers, if it has permission and it is not already installed
2. Push env files to the hosts (you may need to run [`kamal envify`](../envify) to generate `.env` first)
3. Boot all accessories
4. Deploy the app (see [`kamal deploy`](../deploy))
2 changes: 1 addition & 1 deletion v1/docs/configuration/builders.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Enables multiarch builds, defaults to `true`:

The build configuration for local builds, only used if multiarch is enabled (the default).

If there is no remote configuration, by default we build for amd64 and arm64. If you only want to build for one architecture, you can specify it here. The docker socket is optional and uses the default docker host socket when not specified:
If there is no remote configuration, by default we build for amd64 and arm64. If you only want to build for one architecture, you can specify it here. The Docker socket is optional and uses the default Docker host socket when not specified:

```yaml
local:
Expand Down
2 changes: 1 addition & 1 deletion v1/docs/configuration/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Environment variables can be set directory in the Kamal configuration or for loa

Environment variables can be set directly in the configuration file.

These are passed to the docker run command when deploying.
These are passed to the Docker run command when deploying.

```yaml
env:
Expand Down

0 comments on commit 9e78352

Please sign in to comment.