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