Files
tldr/pages.tr/common/docker-machine.md
2022-10-31 06:52:35 -03:00

29 lines
575 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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}}`