Files
tldr/pages.tr/common/docker-compose.md
Kumamoto f9bad725de docker-system, docker-compose: add Japanese translation, update page (#9828)
* docker-system: add Japanese translation

* docker-compose: add Japanese translation

* Update pages.ja/common/docker-compose.md: add a note that the container is running

* Update pages/common/docker-compose.md: exchange short option for long one

* Update pages.ja/common/docker-compose.md: exchange short option for long one

* docker-compose: update command to long flag

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-02-08 21:01:15 +05:30

37 lines
965 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/compose/reference/>.
- 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 --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}}`