From a1eafd41704b62a08882f2758a65ee4120cb4a99 Mon Sep 17 00:00:00 2001 From: Usha Mandya Date: Fri, 17 Jul 2020 16:02:04 +0100 Subject: [PATCH] Move cloud deployment docs to the Guides section --- _data/toc.yaml | 11 +++++++---- engine/context/working-with-contexts.md | 2 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/_data/toc.yaml b/_data/toc.yaml index 39c3658849..ee34441f8c 100644 --- a/_data/toc.yaml +++ b/_data/toc.yaml @@ -53,6 +53,12 @@ guides: title: Manage images - path: /develop/develop-images/baseimages/ title: Create your own base image (advanced) +- sectiontitle: Deploy your app to the cloud + section: + - path: /engine/context/aci-integration/ + title: Docker and ACI (Beta) + - path: /engine/context/ecs-integration/ + title: Docker and ECS (Beta) - sectiontitle: Run your app in production section: - sectiontitle: Orchestration @@ -1091,10 +1097,7 @@ manuals: title: Docker Buildx - path: /engine/context/working-with-contexts/ title: Docker Context - - path: /engine/context/aci-integration/ - title: Docker and ACI (Beta) - - path: /engine/context/ecs-integration/ - title: Docker and ECS (Beta) + - sectiontitle: Docker Compose section: - path: /compose/ diff --git a/engine/context/working-with-contexts.md b/engine/context/working-with-contexts.md index 0d720b1fb0..c32c34716f 100644 --- a/engine/context/working-with-contexts.md +++ b/engine/context/working-with-contexts.md @@ -13,6 +13,8 @@ A single Docker CLI can have multiple contexts. Each context contains all of the As an example, a single Docker client on your company laptop might be configured with two contexts; **dev-k8s** and **prod-swarm**. **dev-k8s** contains the endpoint data and security credentials to configure and manage a Kubernetes cluster in a development environment. **prod-swarm** contains everything required to manage a Swarm cluster in a production environment. Once these contexts are configured, you can use the top-level `docker context use ` to easily switch between them. +For information on using Docker Context to deploy your apps to the cloud, see [Deploying Docker containers on Azure](aci-integration.md) and [Deploying Docker containers on ECS](ecs-integration.md). + ## Prerequisites To follow the examples in this guide, you'll need: