diff --git a/docs/reference/api/docker_remote_api_v1.22.md b/docs/reference/api/docker_remote_api_v1.22.md index 1a23b324a2..c52b0093fb 100644 --- a/docs/reference/api/docker_remote_api_v1.22.md +++ b/docs/reference/api/docker_remote_api_v1.22.md @@ -251,6 +251,7 @@ Create a container "StopSignal": "SIGTERM", "HostConfig": { "Binds": ["/tmp:/tmp"], + "Tmpfs": { "/run": "rw,noexec,nosuid,size=65536k" }, "Links": ["redis3:redis"], "Memory": 0, "MemorySwap": 0, @@ -358,6 +359,8 @@ Create a container _absolute_ path. + `volume-name:container-dest:ro` to mount the volume read-only inside the container. `container-dest` must be an _absolute_ path. + - **Tmpfs** – A map of container directories which should be replaced by tmpfs mounts, and their corresponding + mount options. A JSON object in the form `{ "/run": "rw,noexec,nosuid,size=65536k" }`. - **Links** - A list of links for the container. Each link entry should be in the form of `container_name:alias`. - **Memory** - Memory limit in bytes. diff --git a/docs/reference/api/docker_remote_api_v1.23.md b/docs/reference/api/docker_remote_api_v1.23.md index 25e1413cff..04355b763f 100644 --- a/docs/reference/api/docker_remote_api_v1.23.md +++ b/docs/reference/api/docker_remote_api_v1.23.md @@ -273,6 +273,7 @@ Create a container "StopSignal": "SIGTERM", "HostConfig": { "Binds": ["/tmp:/tmp"], + "Tmpfs": { "/run": "rw,noexec,nosuid,size=65536k" }, "Links": ["redis3:redis"], "Memory": 0, "MemorySwap": 0, @@ -381,6 +382,8 @@ Create a container _absolute_ path. + `volume-name:container-dest:ro` to mount the volume read-only inside the container. `container-dest` must be an _absolute_ path. + - **Tmpfs** – A map of container directories which should be replaced by tmpfs mounts, and their corresponding + mount options. A JSON object in the form `{ "/run": "rw,noexec,nosuid,size=65536k" }`. - **Links** - A list of links for the container. Each link entry should be in the form of `container_name:alias`. - **Memory** - Memory limit in bytes. diff --git a/docs/reference/api/docker_remote_api_v1.24.md b/docs/reference/api/docker_remote_api_v1.24.md index 4fc7c7984b..42a2bff373 100644 --- a/docs/reference/api/docker_remote_api_v1.24.md +++ b/docs/reference/api/docker_remote_api_v1.24.md @@ -284,6 +284,7 @@ Create a container "StopSignal": "SIGTERM", "HostConfig": { "Binds": ["/tmp:/tmp"], + "Tmpfs": { "/run": "rw,noexec,nosuid,size=65536k" }, "Links": ["redis3:redis"], "Memory": 0, "MemorySwap": 0, @@ -398,6 +399,8 @@ Create a container _absolute_ path. + `volume-name:container-dest:ro` to mount the volume read-only inside the container. `container-dest` must be an _absolute_ path. + - **Tmpfs** – A map of container directories which should be replaced by tmpfs mounts, and their corresponding + mount options. A JSON object in the form `{ "/run": "rw,noexec,nosuid,size=65536k" }`. - **Links** - A list of links for the container. Each link entry should be in the form of `container_name:alias`. - **Memory** - Memory limit in bytes. diff --git a/docs/reference/api/docker_remote_api_v1.25.md b/docs/reference/api/docker_remote_api_v1.25.md index cad6763287..e0830a5993 100644 --- a/docs/reference/api/docker_remote_api_v1.25.md +++ b/docs/reference/api/docker_remote_api_v1.25.md @@ -285,6 +285,7 @@ Create a container "StopSignal": "SIGTERM", "HostConfig": { "Binds": ["/tmp:/tmp"], + "Tmpfs": { "/run": "rw,noexec,nosuid,size=65536k" }, "Links": ["redis3:redis"], "Memory": 0, "MemorySwap": 0, @@ -402,6 +403,8 @@ Create a container _absolute_ path. + `volume-name:container-dest:ro` to mount the volume read-only inside the container. `container-dest` must be an _absolute_ path. + - **Tmpfs** – A map of container directories which should be replaced by tmpfs mounts, and their corresponding + mount options. A JSON object in the form `{ "/run": "rw,noexec,nosuid,size=65536k" }`. - **Links** - A list of links for the container. Each link entry should be in the form of `container_name:alias`. - **Memory** - Memory limit in bytes.