Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 865 Bytes

00_code_anleitungen.md

File metadata and controls

34 lines (20 loc) · 865 Bytes

Anleitungen

Vagrant

WICHTIG: vagrant Kommandos muessen aus dem vagrant Verzeichnis heraus gestartet werden!

cd vagrant
  1. Status: vagrant status

Beispiel Ausgabe:

Current machine states:

foreman.betadots.training running (virtualbox)
docker.betadots.training  not created (virtualbox)
apache.betadots.training  not created (virtualbox)
host.betadots.training    not created (virtualbox)

This environment represents multiple VMs. The VMs are all listed
above with their current state. For more information about a specific
VM, run `vagrant status NAME`.
  1. Starten: vagrant up <vm name>

  2. Suspend: vagrant suspend <vm name>

  3. Resume: vagrant resume <vm name>

  4. Loeschen: vagrant destroy -f <vm name>

  5. Login: vagrant ssh <vm name>

  6. Reprovisionieren: vagrant reload --provision <vm name>