Fix forgotten path to old location, remove extra bracket, change docker docs url.
authorAchilleas Pipinellis <axilleas@axilleas.me>
Wed, 8 Oct 2014 12:51:58 +0000 (15:51 +0300)
committerAchilleas Pipinellis <axilleas@axilleas.me>
Wed, 8 Oct 2014 12:51:58 +0000 (15:51 +0300)
README.md

index b07f1a042db07408dc6bfa296f776fc4ff547c94..3254e464f4c2e8739a12130ca12755a42f708767 100644 (file)
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ expose:
   - "127.0.0.1:20080:80"
 ```
 
-Expose port 22 inside the container on port 2222 on ALL local host interfaces. In order to bind to only one interface, you may specify the host's IP address as `([<host_interface>:[host_port]])|(<host_port>):]<container_port>[/udp]` as defined in the [docker port binding documentation](http://docs.docker.io/en/latest/use/port_redirection/)
+Expose port 22 inside the container on port 2222 on ALL local host interfaces. In order to bind to only one interface, you may specify the host's IP address as `([<host_interface>:[host_port]])|(<host_port>):<container_port>[/udp]` as defined in the [docker port binding documentation](http://docs.docker.com/userguide/dockerlinks/)
 
 
 #### volumes:
@@ -95,7 +95,7 @@ Expose port 22 inside the container on port 2222 on ALL local host interfaces. I
 ```
 volumes:
   - volume:
-      host: /var/docker/shared
+      host: /var/discourse/shared
       guest: /shared
 
 ```