You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Docker.DotNet/Endpoints/IContainerOperations.cs
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ public interface IContainerOperations
30
30
/// <param name="parameters">Specifics of how to perform the operation.</param>
31
31
/// <param name="cancellationToken">When triggered, the operation will stop at the next available time, if possible.</param>
32
32
/// <returns>A <see cref="Task{TResult}"/> that resolves to a <see cref="CreateContainerResponse"/>, which provides information about the newly-created container.</returns>
33
-
/// <remarks>The corresponding command in the Docker CLI is <c>docker container create</c>.</remarks>
33
+
/// <remarks>The corresponding command in the Docker CLI are <c>docker create</c> and <c>docker container create</c>.</remarks>
34
34
/// <exception cref="DockerContainerNotFoundException">No such container was found.</exception>
35
35
/// <exception cref="ArgumentNullException">One or more of the inputs was <see langword="null"/>.</exception>
36
36
/// <exception cref="DockerApiException">The input is invalid, there was a conflict with another container, or the daemon experienced an error.</exception>
@@ -73,7 +73,7 @@ public interface IContainerOperations
73
73
/// <param name="cancellationToken">When triggered, the operation will stop at the next available time, if possible.</param>
74
74
/// <returns>A <see cref="Task{TResult}"/> that resolves to a <see cref="Stream"/>, which provides the log information.</returns>
75
75
/// <remarks>This method works only for containers with the <c>json-file</c> or <c>journald</c> logging driver.
76
-
/// <br/>The corresponding commands in the Docker CLI are <c>docker logs</c> and <c>docker container logs</c>.</remarks>
76
+
/// <br/>The corresponding command in the Docker CLI are </c> <c>docker logs</c> and <c>docker container logs</c>.</remarks>
77
77
/// <exception cref="DockerContainerNotFoundException">No such container was found.</exception>
78
78
/// <exception cref="ArgumentNullException">One or more of the inputs was <see langword="null"/>.</exception>
79
79
/// <exception cref="DockerApiException">The input is invalid or the daemon experienced an error.</exception>
@@ -91,8 +91,7 @@ public interface IContainerOperations
91
91
/// <returns>A <see cref="Task"/> that will complete once all log lines have been read, or once the container has exited if Follow is set to <see langword="true"/>.</returns>
92
92
/// <remarks>This method is only suited for containers created with a TTY. For containers created without a TTY, use
0 commit comments