diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-22 00:29:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-22 00:29:52 +0100 |
commit | aa13779e9e8d5bb6090d514e3aad9387cb0a2d35 (patch) | |
tree | 062e1f1f8499375c5124487769e13b7b5fb788f1 /docs/source/markdown/podman-service.1.md | |
parent | f63005e0f23ae6a71c2c910014c5e19623272f73 (diff) | |
parent | d4c2aaf38ad066e742dad530535faade39dadd1a (diff) | |
download | podman-aa13779e9e8d5bb6090d514e3aad9387cb0a2d35.tar.gz podman-aa13779e9e8d5bb6090d514e3aad9387cb0a2d35.tar.bz2 podman-aa13779e9e8d5bb6090d514e3aad9387cb0a2d35.zip |
Merge pull request #4899 from baude/apiv2service
Apiv2service
Diffstat (limited to 'docs/source/markdown/podman-service.1.md')
-rw-r--r-- | docs/source/markdown/podman-service.1.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-service.1.md b/docs/source/markdown/podman-service.1.md new file mode 100644 index 000000000..5c55e20d3 --- /dev/null +++ b/docs/source/markdown/podman-service.1.md @@ -0,0 +1,47 @@ +% podman-service(1) + +## NAME +podman\-service - Run an API service + +## SYNOPSIS +**podman service** [*options*] + +## DESCRIPTION +The **podman 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*. +If no endpoint is provided, defaults will be used. The default endpoint for a rootfull +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*) + +## OPTIONS + +**--timeout**, **-t** + +The time until the session expires in _milliseconds_. The default is 1 +second. A value of `0` means no timeout and the session will not expire. + +**--varlink** + +Use the varlink protocol instead of the REST-based protocol. This option will be deprecated in the future. + +**--help**, **-h** + +Print usage statement. + +## EXAMPLES + +Run an API listening for 5 seconds using the default socket. +``` +podman service --timeout 5000 +``` + +Run the podman varlink service with an alternate URI and accept the default timeout. +``` +$ podman service --varlink unix:/tmp/io.podman +``` + +## SEE ALSO +podman(1), podman-varlink(1) + +## HISTORY +January 2020, Originally compiled by Brent Baude<bbaude@redhat.com> |