m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-19 10:23:42 -05:00

docs: fix outdated example of specifying a unix socket

This commit is contained in:
Sergio
2025-07-22 16:05:54 +03:00
committed by GitHub
parent b542f1bac5
commit de1d662936

View File

@@ -4,7 +4,7 @@ If you need to specify a custom Docker socket (e.g. because you're using Podman)
```jsonc
{
"socket": "/run/user/1000/podman/podman.sock"
"socket": "unix:///run/user/1000/podman/podman.sock"
// Other options
}
```
@@ -16,4 +16,4 @@ You can also specify a TCP socket if you're using a remote Docker host or a [pro
"socket": "tcp://localhost:2375"
// Other options
}
```
```