Documentation: Include notes on mapping ports

When mapping ports as strings there is an issue with the way YAML parses
numbers in the format "xx:yy" where yy is less than 60 - this issue is
now included in the documentation.

This fixes #103
This commit is contained in:
Gary Rennie 2014-02-20 12:53:43 +00:00
commit b06d37f885
7 changed files with 17 additions and 12 deletions

View file

@ -21,7 +21,7 @@ web:
links:
- db
ports:
- 8000:8000
- "8000:8000"
db:
image: orchardup/postgresql
```
@ -107,7 +107,7 @@ We then define a set of services using `fig.yml`:
build: .
command: python app.py
ports:
- 5000:5000
- "5000:5000"
volumes:
- .:/code
links: