dsdk / v1.47 / ContainerAttachData
Type Alias: ContainerAttachData ​
ContainerAttachData:
object
Type declaration ​
Name | Type | Description |
---|---|---|
path | object | - |
path.id | string | ID or name of the container |
query ? | object | - |
query.detachKeys ? | string | Override the key sequence for detaching a container.Format is a single character [a-Z] or ctrl-<value> where <value> is one of: a-z , @ , ^ , [ , , or _ . |
query.logs ? | boolean | Replay previous logs from the container. This is useful for attaching to a container that has started and you want to output everything since the container started. If stream is also enabled, once all the previous output has been returned, it will seamlessly transition into streaming current output. |
query.stderr ? | boolean | Attach to stderr |
query.stdin ? | boolean | Attach to stdin |
query.stdout ? | boolean | Attach to stdout |
query.stream ? | boolean | Stream attached streams from the time the request was made onwards. |