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 <johnpaul7@gmail.com>
This commit is contained in:
John Paul Herold 2017-06-20 15:45:56 -05:00 committed by Misty Stanley-Jones
parent c0639bba84
commit 218fcfed6a
1 changed files with 1 additions and 1 deletions

View File

@ -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).