1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #18026 from woodvi/doc-network-tutorial

change "Web" to "web" to match case-sensitive name used for creation;…
This commit is contained in:
Sebastiaan van Stijn 2015-11-20 10:46:00 +01:00
commit d8ea32caa8
2 changed files with 2 additions and 2 deletions

View file

@ -260,7 +260,7 @@ elsewhere. Create a new container.
Then un-tar the backup file in the new container's data volume. Then un-tar the backup file in the new container's data volume.
$ docker run --volumes-from dbstore2 -v $(pwd):/backup ubuntu cd /dbdata && tar xvf /backup/backup.tar $ docker run --volumes-from dbstore2 -v $(pwd):/backup ubuntu bash -c "cd /dbdata && tar xvf /backup/backup.tar"
You can use the techniques above to automate backup, migration and You can use the techniques above to automate backup, migration and
restore testing using your preferred tools. restore testing using your preferred tools.

View file

@ -218,7 +218,7 @@ After a bit, use CTRL-C to end the `ping` and you'll find the ping failed. That
Docker networking allows you to attach a container to as many networks as you like. You can also attach an already running container. Go ahead and attach your running `web` app to the `my-bridge-network`. Docker networking allows you to attach a container to as many networks as you like. You can also attach an already running container. Go ahead and attach your running `web` app to the `my-bridge-network`.
$ docker network connect my-bridge-network Web $ docker network connect my-bridge-network web
Open a shell into the `db` application again and try the ping command. This time just use the container name `web` rather than the IP Address. Open a shell into the `db` application again and try the ping command. This time just use the container name `web` rather than the IP Address.