Skip to content

Instantly share code, notes, and snippets.

@neofob
Created October 18, 2019 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neofob/3456420101113e669a463c879e7c04d6 to your computer and use it in GitHub Desktop.
Save neofob/3456420101113e669a463c879e7c04d6 to your computer and use it in GitHub Desktop.
Docker commands

Remove all services in docker swarm

for s in `docker service ls --format "{{ .Name }}"`; do docker service rm $s; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment