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

29 lines
1.0 KiB
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 run
> Yeni bir Docker konteynerinde bir komut çalıştır.
> Daha fazla bilgi için: <https://docs.docker.com/engine/reference/commandline/run/>.
- Yeni bir konteynerde, etiketlenmiş bir imgeden komut çalıştır:
`docker run {{imge:etiket}} {{komut}}`
- Yeni bir konteynerde arkaplanda çalışacak şekilde komut çalıştır ve ID'sini göster:
`docker run --detach {{imge}} {{komut}}`
- İnteraktif mod ve pseudo-TTY'deki bir açık-kapalı konteynerde komut çalıştır:
`docker run --rm --interactive --tty {{imge}} {{komut}}`
- Yeni bir konteynerde geçebilmiş çevresel değişkenler ile komut çalıştır:
`docker run --env '{{değişken}}={{değer}}' --env {{değişken}} {{imge}} {{komut}}`
- Yeni bir konteynerde bağlama takılı hacimlerle komut çalıştır:
`docker run --volume {{örnek/host}}:{{örnek/konteyner}} {{imge}} {{komut}}`
- Yayınlanmış portları içeren yeni bir konteynerde komut çalıştır:
`docker run --publish {{host_portu}}:{{konteyner_portu}} {{imge}} {{komut}}`