diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-12 01:47:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 01:47:23 -0700 |
commit | 669311d8d8a8881571ccc81ce48b9202b15b9def (patch) | |
tree | 6920aa44a21a96520da830aa459dee414f5844e7 | |
parent | b31000df35079c6ac79eac2b6c235f8266032f08 (diff) | |
parent | 0f1af6b37df97fb15f45022fac97dd4569605d90 (diff) | |
download | podman-669311d8d8a8881571ccc81ce48b9202b15b9def.tar.gz podman-669311d8d8a8881571ccc81ce48b9202b15b9def.tar.bz2 podman-669311d8d8a8881571ccc81ce48b9202b15b9def.zip |
Merge pull request #9991 from abitrolly/patch-2
[CI:DOCS] Fix slashes in socket URLs
-rw-r--r-- | docs/source/markdown/podman-system-service.1.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-system-service.1.md b/docs/source/markdown/podman-system-service.1.md index 83ede074c..5ad4eff5b 100644 --- a/docs/source/markdown/podman-system-service.1.md +++ b/docs/source/markdown/podman-system-service.1.md @@ -8,10 +8,10 @@ podman\-system\-service - Run an API service ## DESCRIPTION The **podman system service** command creates a listening service that will answer API calls for Podman. You may -optionally provide an endpoint for the API in URI form. For example, *unix://tmp/foobar.sock* or *tcp:localhost:8080*. +optionally provide an endpoint for the API in URI form. For example, *unix:///tmp/foobar.sock* or *tcp:localhost:8080*. If no endpoint is provided, defaults will be used. The default endpoint for a rootful -service is *unix:/run/podman/podman.sock* and rootless is *unix:/$XDG_RUNTIME_DIR/podman/podman.sock* (for -example *unix:/run/user/1000/podman/podman.sock*) +service is *unix:///run/podman/podman.sock* and rootless is *unix://$XDG_RUNTIME_DIR/podman/podman.sock* (for +example *unix:///run/user/1000/podman/podman.sock*) To access the API service inside a container: - mount the socket as a volume |