ソースを参照

Run update.sh

Docker Library Bot 6 年 前
コミット
847bf85be8
3 ファイル変更2 行追加4 行削除
  1. 1 1
      docker/README.md
  2. 1 1
      postgres/README.md
  3. 0 2
      redis/README.md

+ 1 - 1
docker/README.md

@@ -79,7 +79,7 @@ $ docker run --privileged --name some-docker -d docker:stable-dind
 
 **Note:** `--privileged` is required for Docker-in-Docker to function properly, but it should be used with care as it provides full access to the host environment, as explained [in the relevant section of the Docker documentation](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities).
 
-This image includes `EXPOSE 2375` (the Docker port), so standard container linking will make it automatically available to the linked containers (as the following examples illustrate).
+By default, the `dind` variants of this image add `--host=tcp://0.0.0.0:2375` (on top of the explicit default of `--host=unix:///var/run/docker.sock`) in order to allow external containers to access `dockerd` appropriately (as the following examples illustrate).
 
 ## Connect to it from a second container
 

+ 1 - 1
postgres/README.md

@@ -73,7 +73,7 @@ PostgreSQL implements the majority of the SQL:2011 standard, is ACID-compliant a
 $ docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
 ```
 
-This image includes `EXPOSE 5432` (the postgres port), so standard container linking will make it automatically available to the linked containers. The default `postgres` user and database are created in the entrypoint with `initdb`.
+The default `postgres` user and database are created in the entrypoint with `initdb`.
 
 > The postgres database is a default database meant for use by users, utilities and third party applications.
 >

+ 0 - 2
redis/README.md

@@ -67,8 +67,6 @@ Redis is an open-source, networked, in-memory, key-value data store with optiona
 $ docker run --name some-redis -d redis
 ```
 
-This image includes `EXPOSE 6379` (the redis port), so standard container linking will make it automatically available to the linked containers (as the following examples illustrate).
-
 ## start with persistent storage
 
 ```console