From 218fcfed6a0bd277ec0b124536f6ac7de55d2a9f Mon Sep 17 00:00:00 2001 From: John Paul Herold Date: Tue, 20 Jun 2017 15:45:56 -0500 Subject: [PATCH] Fix broken link to distributed app bundles (#3660) (#3661) The "Docker for AWS / Deploy your app" page has a broken link to distributed application bundles. There now is a dedicated page within the documentation repo ("Docker Compose / Docker stacks and distributed application bundles") that we can reference. Tracking: #3660 https://github.com/docker/docker.github.io/issues/3660 Signed-off-by: John Paul Herold --- docker-for-aws/deploy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-for-aws/deploy.md b/docker-for-aws/deploy.md index fa440e77c8..732ad87f42 100644 --- a/docker-for-aws/deploy.md +++ b/docker-for-aws/deploy.md @@ -149,7 +149,7 @@ This tool internally makes use of docker global-mode service that runs a task on ### Distributed Application Bundles -To deploy complex multi-container apps, you can use [distributed application bundles](https://github.com/moby/moby/blob/master/experimental/docker-stacks-and-bundles.md). You can either run `docker deploy` to deploy a bundle on your machine over an SSH tunnel, or copy the bundle (for example using `scp`) to a manager node, SSH into the manager and then run `docker deploy` (if you have multiple managers, you have to ensure that your session is on one that has the bundle file). +To deploy complex multi-container apps, you can use [distributed application bundles](/compose/bundles.md). You can either run `docker deploy` to deploy a bundle on your machine over an SSH tunnel, or copy the bundle (for example using `scp`) to a manager node, SSH into the manager and then run `docker deploy` (if you have multiple managers, you have to ensure that your session is on one that has the bundle file). A good sample app to test application bundles is the [Docker voting app](https://github.com/docker/example-voting-app).