diff --git a/compose/networking.md b/compose/networking.md index 8a9f0ddc3c..e958d515c5 100644 --- a/compose/networking.md +++ b/compose/networking.md @@ -86,11 +86,12 @@ See the [links reference](compose-file/compose-file-v2.md#links) for more inform ## Multi-host networking -> **Note**: The instructions in this section refer to [legacy Docker Swarm](swarm.md) operations, and only work when targeting a legacy Swarm cluster. For instructions on deploying a compose project to the newer integrated swarm mode, consult the [Docker Stacks](../engine/reference/commandline/stack_deploy.md) documentation. +When deploying a Compose application on an Docker Engine with [Swarm mode enabled](../engine/swarm/index.md), +you can make use of the built-in `overlay` driver to enable multi-host communication. -When [deploying a Compose application to a Swarm cluster](swarm.md), you can make use of the built-in `overlay` driver to enable multi-host communication between containers with no changes to your Compose file or application code. - -Consult the [Getting started with multi-host networking](../network/network-tutorial-overlay.md) to see how to set up a Swarm cluster. The cluster uses the `overlay` driver by default, but you can specify it explicitly if you prefer - see below for how to do this. +Consult the [Swarm mode section](../engine/swarm/index.md), to see how to set up +a Swarm cluster, and the [Getting started with multi-host networking](../network/network-tutorial-overlay.md) +to learn about multi-host overlay networks. ## Specify custom networks diff --git a/compose/production.md b/compose/production.md index 4ba082dab2..7e8d4f6031 100644 --- a/compose/production.md +++ b/compose/production.md @@ -61,15 +61,6 @@ appropriately. Once you've set up your environment variables, all the normal `docker-compose` commands work with no further configuration. -### Running Compose on a Swarm cluster - -[Docker Swarm](../swarm/overview.md), a Docker-native clustering -system, exposes the same API as a single Docker host, which means you can use -Compose against a Swarm instance and run your apps across multiple hosts. - -Read more about the Compose/Swarm integration in the -[integration guide](swarm.md). - ## Compose documentation - [User guide](index.md)