tldr/pages.tr/common/docker-machine.md

29 lines
575 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# docker-machine
> Docker çalıştıran makineler oluştur ve onları yönet.
> Daha fazla bilgi için: <https://docs.docker.com/machine/reference/>.
- Halihazırda çalışan docker makinelerini sırala:
`docker-machine ls`
- Belirli bir isim ile docker makinesi oluştur:
`docker-machine create {{isim}}`
- Bir makinenin durumunu öğren:
`docker-machine status {{isim}}`
- Bir makineyi başlat:
`docker-machine start {{isim}}`
- Bir makineyi durdur:
`docker-machine stop {{isim}}`
- Bir makine hakkındaki bilgileri incele:
`docker-machine inspect {{isim}}`