Skip to content

Instantly share code, notes, and snippets.

@leshkin
Created March 26, 2023 18:43
Show Gist options
  • Save leshkin/56b0e2fa7956f6c4b34680f27e92960a to your computer and use it in GitHub Desktop.
Save leshkin/56b0e2fa7956f6c4b34680f27e92960a to your computer and use it in GitHub Desktop.
Docker Swarm commands
# init Docker Swarm
docker swarm init
# init Docker Swarm with IP address
docker swarm init --advertise-addr 127.0.0.1
# deploy app to Docker Swarm
docker stack deploy --compose-file docker-compose.yml app-name
# leave Docker Swarm
docker swarm leave --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment