my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
647 B

3 years ago
  1. # docker-machine plugin for oh my zsh
  2. ### Usage
  3. #### docker-vm
  4. Will create a docker-machine with the name "dev" (required only once)
  5. To create a second machine call "docker-vm foobar" or pass any other name
  6. #### docker-up
  7. This will start your "dev" docker-machine (if necessary) and set it as the active one
  8. To start a named machine use "docker-up foobar"
  9. #### docker-switch dev
  10. Use this to activate a running docker-machine (or to switch between multiple machines)
  11. You need to call either this or docker-up when opening a new terminal
  12. #### docker-stop
  13. This will stop your "dev" docker-machine
  14. To stop a named machine use "docker-stop foobar"