[go: up one dir, main page]

{ const container = $el; // The div with overflow const item = document.getElementById('sidebar-current-page') if (item) { const containerTop = container.scrollTop; const containerBottom = containerTop + container.clientHeight; const itemTop = item.offsetTop - container.offsetTop; const itemBottom = itemTop + item.offsetHeight; // Scroll only if the item is out of view if (itemBottom > containerBottom - 200) { container.scrollTop = itemTop - (container.clientHeight / 2 - item.offsetHeight / 2); } } })" class="bg-background-toc dark:bg-background-toc fixed top-0 z-40 hidden h-screen w-full flex-none overflow-x-hidden overflow-y-auto md:sticky md:top-16 md:z-auto md:block md:h-[calc(100vh-64px)] md:w-[320px]" :class="{ 'hidden': ! $store.showSidebar }">
Contact support

Docker Engine 17.11 release notes

Table of contents

17.11.0-ce

2017-11-20

Important

Docker CE 17.11 is the first Docker release based on containerd 1.0 beta. Docker CE 17.11 and later don't recognize containers started with previous Docker versions. If you use Live Restore, you must stop all containers before upgrading to Docker CE 17.11. If you don't, any containers started by Docker versions that predate 17.11 aren't recognized by Docker after the upgrade and keep running, un-managed, on the system.

Builder

Client

  • Add output for "secrets" and "configs" on docker stack deploy docker/cli#593

Deprecation

  • Update bash completion and deprecation for synchronous service updates docker/cli#610

Logging

Networking

Runtime

  • Fix panic on get container pid when live restore containers moby/moby#35157
  • Mask /proc/scsi path for containers to prevent removal of devices (CVE-2017-16539) moby/moby#35399

Swarm Mode

  • Modifying integration test due to new ipam options in swarmkit moby/moby#35103
  • Expand the scope of the Err field in TaskStatus to also cover non-terminal errors that block the task from progressing docker/swarmkit#2287

Packaging