Fix readme formatting

This commit is contained in:
Ben Firshman 2013-12-13 20:44:35 +00:00
parent 539f1acdb8
commit 21159b801f
1 changed files with 9 additions and 9 deletions

View File

@ -118,18 +118,18 @@ You can pass extra configuration options to a container, much like with `docker
web:
build: web/
-- override the default run command
run: bundle exec thin -p 3000
-- override the default run command
run: bundle exec thin -p 3000
-- expose ports - can also be an array
ports: 3000
-- expose ports - can also be an array
ports: 3000
-- map volumes - can also be an array
volumes: /tmp/cache
-- map volumes - can also be an array
volumes: /tmp/cache
-- add environment variables - can also be a dictionary
environment:
- RACK_ENV=development
-- add environment variables - can also be a dictionary
environment:
RACK_ENV: development
```