[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 }">

Docker Engine 17.07 release notes

Table of contents

17.07.0-ce

2017-08-29

API & Client

  • Add support for proxy configuration in config.json docker/cli#93
  • Enable pprof/debug endpoints by default moby/moby#32453
  • Passwords can now be passed using STDIN using the new --password-stdin flag on docker login docker/cli#271
  • Prevent docker logs --no-stream from hanging due to non-existing containers moby/moby#34004
  • Fix docker stack ps printing error to stdout instead of stderr docker/cli#298

Builder

  • Fix .dockerignore entries with a leading / not matching anything moby/moby#32088

Logging

Runtime

  • Remove container locks on docker ps moby/moby#31273
  • Store container names in memdb moby/moby#33886
  • Fix race condition between docker exec and docker pause moby/moby#32881
  • Devicemapper: Rework logging and add --storage-opt dm.libdm_log_level moby/moby#33845
  • Devicemapper: Prevent "device in use" errors if deferred removal is enabled, but not deferred deletion moby/moby#33877
  • Devicemapper: Use KeepAlive to prevent tasks being garbage-collected while still in use moby/moby#33376
  • Report intermediate prune results if prune is cancelled moby/moby#33979
  • Fix run docker rename <container-id> new_name concurrently resulting in the having multiple names moby/moby#33940

Swarm mode