From 2461f3b94b9f4d07cec5e31b1a0b8ec230cbbf42 Mon Sep 17 00:00:00 2001 From: Sergio <77530549+sergi0g@users.noreply.github.com> Date: Thu, 27 Feb 2025 21:57:57 +0200 Subject: [PATCH] Update docs --- docs/src/content/docs/configuration/servers.mdx | 2 +- docs/src/content/docs/configuration/socket.mdx | 4 ++-- docs/src/content/docs/configuration/theme.mdx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/content/docs/configuration/servers.mdx b/docs/src/content/docs/configuration/servers.mdx index 077e681..49b2dd1 100644 --- a/docs/src/content/docs/configuration/servers.mdx +++ b/docs/src/content/docs/configuration/servers.mdx @@ -4,7 +4,7 @@ Besides checking for local image updates, you might want to be able to view upda Just add something like this to your config: -```json +```jsonc { "servers": { "Cool server 1": "http://your-other-server-running-cup:8000", diff --git a/docs/src/content/docs/configuration/socket.mdx b/docs/src/content/docs/configuration/socket.mdx index f235075..224278d 100644 --- a/docs/src/content/docs/configuration/socket.mdx +++ b/docs/src/content/docs/configuration/socket.mdx @@ -2,7 +2,7 @@ If you need to specify a custom Docker socket (e.g. because you're using Podman), you can use the `socket` option. Here's an example: -```json +```jsonc { "socket": "/run/user/1000/podman/podman.sock" // Other options @@ -11,7 +11,7 @@ If you need to specify a custom Docker socket (e.g. because you're using Podman) You can also specify a TCP socket if you're using a remote Docker host or a [proxy](https://github.com/Tecnativa/docker-socket-proxy): -```json +```jsonc { "socket": "tcp://localhost:2375" // Other options diff --git a/docs/src/content/docs/configuration/theme.mdx b/docs/src/content/docs/configuration/theme.mdx index bbcfde0..f7cfa7b 100644 --- a/docs/src/content/docs/configuration/theme.mdx +++ b/docs/src/content/docs/configuration/theme.mdx @@ -21,7 +21,7 @@ Available options are `default` and `blue`. Here's an example: -```json +```jsonc { "theme": "blue" // Other options