m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-19 02:13:41 -05:00

2 Commits

Author SHA1 Message Date
Sergio
a1d53bb56b docs: fix outdated example of specifying a custom unix socket 2025-07-22 16:06:46 +03:00
Sergio
de1d662936 docs: fix outdated example of specifying a unix socket 2025-07-22 16:05:54 +03:00
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ Sometimes, there may be a need to specify a custom docker socket. Cup provides t
For example, if using Podman, you might do
```bash
$ cup -s /run/user/1000/podman/podman.sock check
$ cup -s unix:///run/user/1000/podman/podman.sock check
```
This option is also available in the configuration file and it's best to put it there.

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
}
```
```