diff --git a/tldr/docker-run b/tldr/docker-run
index 02eaf1af..21552f6b 100644
--- a/tldr/docker-run
+++ b/tldr/docker-run
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# docker run
> Run a command in a new Docker container.
-> More information: .
+> More information: .
- Run command in a new container from a tagged image:
diff --git a/tldr/docker-save b/tldr/docker-save
index 923e6b57..496f7e16 100644
--- a/tldr/docker-save
+++ b/tldr/docker-save
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# docker save
> Export Docker images to archive.
-> More information: .
+> More information: .
- Save an image by redirecting `stdout` to a tar archive:
diff --git a/tldr/docker-secret b/tldr/docker-secret
index 2245f149..8d1889c2 100644
--- a/tldr/docker-secret
+++ b/tldr/docker-secret
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# docker secret
> Manage Docker swarm secrets.
-> More information: .
+> More information: .
- Create a new secret from `stdin`:
diff --git a/tldr/linux/secret-tool b/tldr/linux/secret-tool
new file mode 100644
index 00000000..bf3bf43b
--- /dev/null
+++ b/tldr/linux/secret-tool
@@ -0,0 +1,26 @@
+---
+syntax: markdown
+tags: [tldr, linux]
+source: https://github.com/tldr-pages/tldr.git
+---
+# secret-tool
+
+> Store and retrieve passwords, part of the `libsecret` package.
+> Communicates with Freedesktop secret service implementations such as `gnome-keyring`.
+> More information: .
+
+- Store a secret with an optional label:
+
+`secret-tool store --label={{label}} {{key}} {{value}}`
+
+- Retrieve a secret:
+
+`secret-tool lookup key {{key}}`
+
+- Get more information about a secret:
+
+`secret-tool search key {{key}}`
+
+- Delete a stored secret:
+
+`secret-tool clear key {{key}}`