2015-06-07 23:07:20 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "Linking containers together"
|
|
|
|
description = "Learn how to connect Docker containers together."
|
|
|
|
keywords = ["Examples, Usage, user guide, links, linking, docker, documentation, examples, names, name, container naming, port, map, network port, network"]
|
|
|
|
[menu.main]
|
|
|
|
parent = "smn_containers"
|
|
|
|
weight = 4
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-04-21 11:50:09 -04:00
|
|
|
# Linking containers together
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
In [the Using Docker section](/userguide/usingdocker), you saw how you can
|
|
|
|
connect to a service running inside a Docker container via a network
|
|
|
|
port. But a port connection is only one way you can interact with services and
|
|
|
|
applications running inside Docker containers. In this section, we'll briefly revisit
|
|
|
|
connecting via a network port and then we'll introduce you to another method of access:
|
|
|
|
container linking.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-04-21 11:50:09 -04:00
|
|
|
## Connect using network port mapping
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
In [the Using Docker section](/userguide/usingdocker), you created a
|
|
|
|
container that ran a Python Flask application:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -d -P training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
> **Note:**
|
|
|
|
> Containers have an internal network and an IP address
|
2014-07-25 19:22:41 -04:00
|
|
|
> (as we saw when we used the `docker inspect` command to show the container's
|
2014-05-21 17:05:19 -04:00
|
|
|
> IP address in the [Using Docker](/userguide/usingdocker/) section).
|
|
|
|
> Docker can have a variety of network configurations. You can see more
|
|
|
|
> information on Docker networking [here](/articles/networking/).
|
|
|
|
|
2015-01-21 07:40:59 -05:00
|
|
|
When that container was created, the `-P` flag was used to automatically map
|
|
|
|
any network port inside it to a random high port within an *ephemeral port
|
|
|
|
range* on your Docker host. Next, when `docker ps` was run, you saw that port
|
|
|
|
5000 in the container was bound to port 49155 on the host.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker ps nostalgic_morse
|
2014-05-21 17:05:19 -04:00
|
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
|
|
bc533791f3f5 training/webapp:latest python app.py 5 seconds ago Up 2 seconds 0.0.0.0:49155->5000/tcp nostalgic_morse
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You also saw how you can bind a container's ports to a specific port using
|
2015-03-31 06:03:18 -04:00
|
|
|
the `-p` flag. Here port 80 of the host is mapped to port 5000 of the
|
|
|
|
container:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-31 06:03:18 -04:00
|
|
|
$ docker run -d -p 80:5000 training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
And you saw why this isn't such a great idea because it constrains you to
|
2014-05-21 17:05:19 -04:00
|
|
|
only one container on that specific port.
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
There are also a few other ways you can configure the `-p` flag. By
|
2014-05-21 17:05:19 -04:00
|
|
|
default the `-p` flag will bind the specified port to all interfaces on
|
2014-07-25 19:22:41 -04:00
|
|
|
the host machine. But you can also specify a binding to a specific
|
2014-05-21 17:05:19 -04:00
|
|
|
interface, for example only to the `localhost`.
|
|
|
|
|
2015-03-31 06:03:18 -04:00
|
|
|
$ docker run -d -p 127.0.0.1:80:5000 training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-31 06:03:18 -04:00
|
|
|
This would bind port 5000 inside the container to port 80 on the
|
2014-05-21 17:05:19 -04:00
|
|
|
`localhost` or `127.0.0.1` interface on the host machine.
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Or, to bind port 5000 of the container to a dynamic port but only on the
|
|
|
|
`localhost`, you could use:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -d -p 127.0.0.1::5000 training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You can also bind UDP ports by adding a trailing `/udp`. For example:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-31 06:03:18 -04:00
|
|
|
$ docker run -d -p 127.0.0.1:80:5000/udp training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You also learned about the useful `docker port` shortcut which showed us the
|
|
|
|
current port bindings. This is also useful for showing you specific port
|
|
|
|
configurations. For example, if you've bound the container port to the
|
|
|
|
`localhost` on the host machine, then the `docker port` output will reflect that.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker port nostalgic_morse 5000
|
2014-05-21 17:05:19 -04:00
|
|
|
127.0.0.1:49155
|
|
|
|
|
|
|
|
> **Note:**
|
|
|
|
> The `-p` flag can be used multiple times to configure multiple ports.
|
|
|
|
|
2015-03-05 08:50:43 -05:00
|
|
|
## Connect with the linking system
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
Network port mappings are not the only way Docker containers can connect
|
|
|
|
to one another. Docker also has a linking system that allows you to link
|
2014-07-25 19:22:41 -04:00
|
|
|
multiple containers together and send connection information from one to another.
|
|
|
|
When containers are linked, information about a source container can be sent to a
|
|
|
|
recipient container. This allows the recipient to see selected data describing
|
|
|
|
aspects of the source container.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-05 08:50:43 -05:00
|
|
|
### The importance of naming
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
To establish links, Docker relies on the names of your containers.
|
|
|
|
You've already seen that each container you create has an automatically
|
|
|
|
created name; indeed you've become familiar with our old friend
|
2014-05-21 17:05:19 -04:00
|
|
|
`nostalgic_morse` during this guide. You can also name containers
|
|
|
|
yourself. This naming provides two useful functions:
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
1. It can be useful to name containers that do specific functions in a way
|
2014-05-21 17:05:19 -04:00
|
|
|
that makes it easier for you to remember them, for example naming a
|
2014-07-25 19:22:41 -04:00
|
|
|
container containing a web application `web`.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-06-28 12:26:36 -04:00
|
|
|
2. It provides Docker with a reference point that allows it to refer to other
|
2014-07-25 19:22:41 -04:00
|
|
|
containers, for example, you can specify to link the container `web` to container `db`.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
You can name your container by using the `--name` flag, for example:
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -d -P --name web training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
This launches a new container and uses the `--name` flag to
|
|
|
|
name the container `web`. You can see the container's name using the
|
2014-05-21 17:05:19 -04:00
|
|
|
`docker ps` command.
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker ps -l
|
2014-05-21 17:05:19 -04:00
|
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
|
|
aed84ee21bde training/webapp:latest python app.py 12 hours ago Up 2 seconds 0.0.0.0:49154->5000/tcp web
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You can also use `docker inspect` to return the container's name.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
|
2015-05-07 16:02:14 -04:00
|
|
|
> **Note:**
|
2014-05-21 17:05:19 -04:00
|
|
|
> Container names have to be unique. That means you can only call
|
2014-07-06 20:28:53 -04:00
|
|
|
> one container `web`. If you want to re-use a container name you must delete
|
2014-07-25 19:22:41 -04:00
|
|
|
> the old container (with `docker rm`) before you can create a new
|
2014-05-21 17:05:19 -04:00
|
|
|
> container with the same name. As an alternative you can use the `--rm`
|
|
|
|
> flag with the `docker run` command. This will delete the container
|
2014-07-25 19:22:41 -04:00
|
|
|
> immediately after it is stopped.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-05 08:50:43 -05:00
|
|
|
## Communication across links
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Links allow containers to discover each other and securely transfer information about one
|
|
|
|
container to another container. When you set up a link, you create a conduit between a
|
|
|
|
source container and a recipient container. The recipient can then access select data
|
|
|
|
about the source. To create a link, you use the `--link` flag. First, create a new
|
|
|
|
container, this time one containing a database.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -d --name db training/postgres
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
This creates a new container called `db` from the `training/postgres`
|
2014-05-21 17:05:19 -04:00
|
|
|
image, which contains a PostgreSQL database.
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Now, you need to delete the `web` container you created previously so you can replace it
|
2014-07-06 20:28:53 -04:00
|
|
|
with a linked one:
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker rm -f web
|
2014-07-06 20:28:53 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Now, create a new `web` container and link it with your `db` container.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -d -P --name web --link db:db training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
This will link the new `web` container with the `db` container you created
|
2014-05-21 17:05:19 -04:00
|
|
|
earlier. The `--link` flag takes the form:
|
|
|
|
|
2015-01-18 20:57:44 -05:00
|
|
|
--link <name or id>:alias
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
Where `name` is the name of the container we're linking to and `alias` is an
|
2014-07-25 19:22:41 -04:00
|
|
|
alias for the link name. You'll see how that alias gets used shortly.
|
2015-05-07 16:02:14 -04:00
|
|
|
The `--link` flag also takes the form:
|
|
|
|
|
|
|
|
--link <name or id>
|
|
|
|
|
|
|
|
In which case the alias will match the name. You could have written the previous
|
|
|
|
example as:
|
|
|
|
|
|
|
|
$ docker run -d -P --name web --link db training/webapp python app.py
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-10-21 14:17:20 -04:00
|
|
|
Next, inspect your linked containers with `docker inspect`:
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker inspect -f "{{ .HostConfig.Links }}" web
|
2014-10-21 14:17:20 -04:00
|
|
|
[/db:/web/db]
|
|
|
|
|
|
|
|
You can see that the `web` container is now linked to the `db` container
|
|
|
|
`web/db`. Which allows it to access information about the `db` container.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-10-31 09:00:59 -04:00
|
|
|
So what does linking the containers actually do? You've learned that a link allows a
|
|
|
|
source container to provide information about itself to a recipient container. In
|
2014-07-25 19:22:41 -04:00
|
|
|
our example, the recipient, `web`, can access information about the source `db`. To do
|
|
|
|
this, Docker creates a secure tunnel between the containers that doesn't need to
|
|
|
|
expose any ports externally on the container; you'll note when we started the
|
|
|
|
`db` container we did not use either the `-P` or `-p` flags. That's a big benefit of
|
|
|
|
linking: we don't need to expose the source container, here the PostgreSQL database, to
|
|
|
|
the network.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Docker exposes connectivity information for the source container to the
|
|
|
|
recipient container in two ways:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
* Environment variables,
|
2014-06-25 03:59:10 -04:00
|
|
|
* Updating the `/etc/hosts` file.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-04-21 11:50:09 -04:00
|
|
|
### Environment variables
|
2014-10-11 12:15:54 -04:00
|
|
|
|
2015-03-05 08:50:43 -05:00
|
|
|
Docker creates several environment variables when you link containers. Docker
|
|
|
|
automatically creates environment variables in the target container based on
|
|
|
|
the `--link` parameters. It will also expose all environment variables
|
|
|
|
originating from Docker from the source container. These include variables from:
|
|
|
|
|
|
|
|
* the `ENV` commands in the source container's Dockerfile
|
|
|
|
* the `-e`, `--env` and `--env-file` options on the `docker run`
|
|
|
|
command when the source container is started
|
|
|
|
|
|
|
|
These environment variables enable programmatic discovery from within the
|
|
|
|
target container of information related to the source container.
|
|
|
|
|
|
|
|
> **Warning**:
|
|
|
|
> It is important to understand that *all* environment variables originating
|
|
|
|
> from Docker within a container are made available to *any* container
|
|
|
|
> that links to it. This could have serious security implications if sensitive
|
|
|
|
> data is stored in them.
|
|
|
|
|
|
|
|
Docker sets an `<alias>_NAME` environment variable for each target container
|
|
|
|
listed in the `--link` parameter. For example, if a new container called
|
|
|
|
`web` is linked to a database container called `db` via `--link db:webdb`,
|
|
|
|
then Docker creates a `WEBDB_NAME=/web/webdb` variable in the `web` container.
|
|
|
|
|
|
|
|
Docker also defines a set of environment variables for each port exposed by the
|
|
|
|
source container. Each variable has a unique prefix in the form:
|
|
|
|
|
|
|
|
`<name>_PORT_<port>_<protocol>`
|
|
|
|
|
|
|
|
The components in this prefix are:
|
|
|
|
|
|
|
|
* the alias `<name>` specified in the `--link` parameter (for example, `webdb`)
|
|
|
|
* the `<port>` number exposed
|
|
|
|
* a `<protocol>` which is either TCP or UDP
|
|
|
|
|
|
|
|
Docker uses this prefix format to define three distinct environment variables:
|
|
|
|
|
|
|
|
* The `prefix_ADDR` variable contains the IP Address from the URL, for
|
|
|
|
example `WEBDB_PORT_8080_TCP_ADDR=172.17.0.82`.
|
|
|
|
* The `prefix_PORT` variable contains just the port number from the URL for
|
|
|
|
example `WEBDB_PORT_8080_TCP_PORT=8080`.
|
|
|
|
* The `prefix_PROTO` variable contains just the protocol from the URL for
|
|
|
|
example `WEBDB_PORT_8080_TCP_PROTO=tcp`.
|
|
|
|
|
|
|
|
If the container exposes multiple ports, an environment variable set is
|
|
|
|
defined for each one. This means, for example, if a container exposes 4 ports
|
|
|
|
that Docker creates 12 environment variables, 3 for each port.
|
|
|
|
|
|
|
|
Additionally, Docker creates an environment variable called `<alias>_PORT`.
|
|
|
|
This variable contains the URL of the source container's first exposed port.
|
|
|
|
The 'first' port is defined as the exposed port with the lowest number.
|
|
|
|
For example, consider the `WEBDB_PORT=tcp://172.17.0.82:8080` variable. If
|
|
|
|
that port is used for both tcp and udp, then the tcp one is specified.
|
|
|
|
|
|
|
|
Finally, Docker also exposes each Docker originated environment variable
|
|
|
|
from the source container as an environment variable in the target. For each
|
|
|
|
variable Docker creates an `<alias>_ENV_<name>` variable in the target
|
|
|
|
container. The variable's value is set to the value Docker used when it
|
|
|
|
started the source container.
|
2014-10-11 12:15:54 -04:00
|
|
|
|
|
|
|
Returning back to our database example, you can run the `env`
|
2014-07-25 19:22:41 -04:00
|
|
|
command to list the specified container's environment variables.
|
2014-06-20 07:49:22 -04:00
|
|
|
|
2014-06-25 03:59:10 -04:00
|
|
|
```
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run --rm --name web2 --link db:db training/webapp env
|
2014-05-21 17:05:19 -04:00
|
|
|
. . .
|
2014-06-12 12:26:55 -04:00
|
|
|
DB_NAME=/web2/db
|
2014-05-21 17:05:19 -04:00
|
|
|
DB_PORT=tcp://172.17.0.5:5432
|
2014-09-12 06:04:40 -04:00
|
|
|
DB_PORT_5432_TCP=tcp://172.17.0.5:5432
|
|
|
|
DB_PORT_5432_TCP_PROTO=tcp
|
|
|
|
DB_PORT_5432_TCP_PORT=5432
|
|
|
|
DB_PORT_5432_TCP_ADDR=172.17.0.5
|
2014-05-21 17:05:19 -04:00
|
|
|
. . .
|
2014-06-25 03:59:10 -04:00
|
|
|
```
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You can see that Docker has created a series of environment variables with
|
2015-03-05 08:50:43 -05:00
|
|
|
useful information about the source `db` container. Each variable is prefixed
|
|
|
|
with
|
2014-07-25 19:22:41 -04:00
|
|
|
`DB_`, which is populated from the `alias` you specified above. If the `alias`
|
|
|
|
were `db1`, the variables would be prefixed with `DB1_`. You can use these
|
2014-05-21 17:05:19 -04:00
|
|
|
environment variables to configure your applications to connect to the database
|
2014-07-25 19:22:41 -04:00
|
|
|
on the `db` container. The connection will be secure and private; only the
|
2014-05-21 17:05:19 -04:00
|
|
|
linked `web` container will be able to talk to the `db` container.
|
|
|
|
|
2015-03-05 08:50:43 -05:00
|
|
|
### Important notes on Docker environment variables
|
|
|
|
|
|
|
|
Unlike host entries in the [`/etc/hosts` file](#updating-the-etchosts-file),
|
|
|
|
IP addresses stored in the environment variables are not automatically updated
|
|
|
|
if the source container is restarted. We recommend using the host entries in
|
|
|
|
`/etc/hosts` to resolve the IP address of linked containers.
|
|
|
|
|
|
|
|
These environment variables are only set for the first process in the
|
|
|
|
container. Some daemons, such as `sshd`, will scrub them when spawning shells
|
|
|
|
for connection.
|
|
|
|
|
2014-10-11 12:15:54 -04:00
|
|
|
### Updating the `/etc/hosts` file
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
In addition to the environment variables, Docker adds a host entry for the
|
|
|
|
source container to the `/etc/hosts` file. Here's an entry for the `web`
|
|
|
|
container:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -t -i --rm --link db:webdb training/webapp /bin/bash
|
2014-05-21 17:05:19 -04:00
|
|
|
root@aed84ee21bde:/opt/webapp# cat /etc/hosts
|
|
|
|
172.17.0.7 aed84ee21bde
|
|
|
|
. . .
|
2015-02-16 00:00:51 -05:00
|
|
|
172.17.0.5 webdb 6e5cdeb2d300 db
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
You can see two relevant host entries. The first is an entry for the `web`
|
2014-05-21 17:05:19 -04:00
|
|
|
container that uses the Container ID as a host name. The second entry uses the
|
2015-02-16 00:00:51 -05:00
|
|
|
link alias to reference the IP address of the `db` container. In addition to
|
|
|
|
the alias you provide, the linked container's name--if unique from the alias
|
|
|
|
provided to the `--link` parameter--and the linked container's hostname will
|
|
|
|
also be added in `/etc/hosts` for the linked container's IP address. You can ping
|
|
|
|
that host now via any of these entries:
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
root@aed84ee21bde:/opt/webapp# apt-get install -yqq inetutils-ping
|
2015-02-16 00:00:51 -05:00
|
|
|
root@aed84ee21bde:/opt/webapp# ping webdb
|
|
|
|
PING webdb (172.17.0.5): 48 data bytes
|
2014-05-21 17:05:19 -04:00
|
|
|
56 bytes from 172.17.0.5: icmp_seq=0 ttl=64 time=0.267 ms
|
|
|
|
56 bytes from 172.17.0.5: icmp_seq=1 ttl=64 time=0.250 ms
|
|
|
|
56 bytes from 172.17.0.5: icmp_seq=2 ttl=64 time=0.256 ms
|
|
|
|
|
|
|
|
> **Note:**
|
2014-07-25 19:22:41 -04:00
|
|
|
> In the example, you'll note you had to install `ping` because it was not included
|
|
|
|
> in the container initially.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Here, you used the `ping` command to ping the `db` container using its host entry,
|
|
|
|
which resolves to `172.17.0.5`. You can use this host entry to configure an application
|
|
|
|
to make use of your `db` container.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
> **Note:**
|
2014-07-25 19:22:41 -04:00
|
|
|
> You can link multiple recipient containers to a single source. For
|
|
|
|
> example, you could have multiple (differently named) web containers attached to your
|
|
|
|
>`db` container.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
2014-07-14 19:19:37 -04:00
|
|
|
If you restart the source container, the linked containers `/etc/hosts` files
|
|
|
|
will be automatically updated with the source container's new IP address,
|
|
|
|
allowing linked communication to continue.
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker restart db
|
2015-01-18 10:17:49 -05:00
|
|
|
db
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -t -i --rm --link db:db training/webapp /bin/bash
|
2014-07-14 19:19:37 -04:00
|
|
|
root@aed84ee21bde:/opt/webapp# cat /etc/hosts
|
|
|
|
172.17.0.7 aed84ee21bde
|
|
|
|
. . .
|
|
|
|
172.17.0.9 db
|
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
# Next step
|
|
|
|
|
2014-07-25 19:22:41 -04:00
|
|
|
Now that you know how to link Docker containers together, the next step is
|
|
|
|
learning how to manage data, volumes and mounts inside your containers.
|
2014-05-21 17:05:19 -04:00
|
|
|
|
|
|
|
Go to [Managing Data in Containers](/userguide/dockervolumes).
|
|
|
|
|