Files
tldr/pages.tr/common/docker-compose.md
Nelson Figueroa 51be1c9f9d docker-compose: update documentation link (#13700)
* updated docs link

* updated docs link for translations
2024-09-14 02:37:19 +02:00

37 lines
994 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 compose
> Çoklu konteynerli Docker uygulamalarını çalıştırın ve yönetin.
> Daha fazla bilgi için: <https://docs.docker.com/reference/cli/docker/compose/>.
- Tüm konteynerleri listele:
`docker compose ps`
- Mevcut dizinde bir `docker-compose.yml` dosyası çalıştırarak arkaplandaki tüm konteynerleri çalıştırın ve başlatın:
`docker compose up --detach`
- Tüm konteynerleri çalıştırın ve gerekiyorsa yeniden oluşturun:
`docker compose up --build`
- Tüm konteynerleri alternatif bir beste dosyasıyla başlatın:
`docker compose -p {{proje Adı}} --file {{yoldan/dosyaya}} up`
- Çalışan tüm konteynerleri durdurun:
`docker compose stop`
- Tüm konteynerleri, ağları, imgeleri ve alanları durdurun ve silin:
`docker compose down --rmi all --volumes`
- Tüm konteynerler için logları takip edin:
`docker compose logs --follow`
- Belirtilmiş bir konteyner için logları takip edin:
`docker compose logs --follow {{konteyner_ismi}}`