Skip to content
Open
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
2 changes: 1 addition & 1 deletion docker-swarm-cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Initialize a swarm: `docker swarm init`
- List swarm nodes: `docker node ls`
- Get the command for new nodes to join a swarm: `docker swarm join-token worker` or `docker swarm join-token worker`. The command prints the required command and token: E.g. To add a worker to this swarm, run the following command:
- Get the command for new nodes to join a swarm: `docker swarm join-token worker` or `docker swarm join-token manager`. The command prints the required command and token: E.g. To add a worker to this swarm, run the following command:

```
docker swarm join \
Expand Down