Push of Compose xref edits to public.

This commit is contained in:
KoryKessel-Docker 2019-11-14 14:40:19 +00:00
parent c7a5ff873d
commit 2ce3996912
4 changed files with 1 additions and 21 deletions

View File

@ -26,12 +26,6 @@ However, [swarm mode](/engine/swarm/index.md), multi-service applications, and
stack files now are fully supported. A stack file is a particular type of stack files now are fully supported. A stack file is a particular type of
[version 3 Compose file](/compose/compose-file/index.md). [version 3 Compose file](/compose/compose-file/index.md).
If you are just getting started with Docker and want to learn the best way to
deploy multi-service applications, a good place to start is the [Get Started
walkthrough](/get-started/). This shows you how to define
a service configuration in a Compose file, deploy the app, and use
the relevant tools and commands.
## Produce a bundle ## Produce a bundle
The easiest way to produce a bundle is to generate it using `docker-compose` The easiest way to produce a bundle is to generate it using `docker-compose`
@ -212,8 +206,6 @@ A service has the following fields:
## Related topics ## Related topics
* [Get started walkthrough](/get-started/)
* [docker stack deploy](/engine/reference/commandline/stack_deploy/) command * [docker stack deploy](/engine/reference/commandline/stack_deploy/) command
* [deploy](/compose/compose-file/index.md#deploy) option in [Compose files](/compose/compose-file/index.md) * [deploy](/compose/compose-file/index.md#deploy) option in [Compose files](/compose/compose-file/index.md)

View File

@ -2586,6 +2586,5 @@ stack.
- [User guide](/compose/index.md) - [User guide](/compose/index.md)
- [Installing Compose](/compose/install/) - [Installing Compose](/compose/install/)
- [Compose file versions and upgrading](compose-versioning.md) - [Compose file versions and upgrading](compose-versioning.md)
- [Get started with Docker](/get-started/)
- [Samples](/samples/) - [Samples](/samples/)
- [Command line reference](/compose/reference/) - [Command line reference](/compose/reference/)

View File

@ -59,7 +59,6 @@ Compose has commands for managing the whole lifecycle of your application:
## Compose documentation ## Compose documentation
- [Installing Compose](install.md) - [Installing Compose](install.md)
- [Getting Started](gettingstarted.md)
- [Get started with Django](django.md) - [Get started with Django](django.md)
- [Get started with Rails](rails.md) - [Get started with Rails](rails.md)
- [Get started with WordPress](wordpress.md) - [Get started with WordPress](wordpress.md)

View File

@ -32,13 +32,3 @@ Docker Compose to set up and run a Rails/PostgreSQL app.
- [Quickstart: Compose and WordPress](/compose/wordpress.md) - Shows how to - [Quickstart: Compose and WordPress](/compose/wordpress.md) - Shows how to
use Docker Compose to set up and run WordPress in an isolated environment use Docker Compose to set up and run WordPress in an isolated environment
with Docker containers. with Docker containers.
## Samples that include Compose in the workflows
These samples include working with Docker Compose as part of broader learning
goals:
- [Get Started with Docker](/get-started/index.md) - This multi-part tutorial covers writing your first app, data storage, networking, and swarms,
and ends with your app running on production servers in the cloud.
- [Deploying an app to a Swarm](https://github.com/docker/labs/blob/master/beginner/chapters/votingapp.md) - This tutorial from [Docker Labs](https://github.com/docker/labs/blob/master/README.md) shows you how to create and customize a sample voting app, deploy it to a [swarm](/engine/swarm.md), test it, reconfigure the app, and redeploy.