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

25 lines
607 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 secret
> Docker swarm sırlarını yönet.
> Daha fazla bilgi için: <https://docs.docker.com/engine/reference/commandline/secret/>.
- `stdin`'den yeni bir sır yarat:
`{{komut}} | docker secret create {{sır_ismi}} -`
- Bir dosyadan yeni sır oluşturun:
`docker secret create {{sır_ismi}} {{örnek/dosya}}`
- Tüm sırları sırala:
`docker secret ls`
- Bir veya daha fazla sırra dair detaylı bilgiyi insan dostu bir formatta göster:
`docker secret inspect --pretty {{sır_ismi1 sır_ismi2 ...}}`
- Bir veya daha fazla sırrı sil:
`docker secret rm {{sır_ismi1 sır_ismi2 ...}}`