From 31cf63b37450eb3464c0c463cc9240dbdb149b79 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Fri, 31 Jul 2015 07:27:45 -0700 Subject: [PATCH] Merge pull request #1799 from d2bit/clean-rails-quickstart-guide-db-config Remove useless postgres 'port' configuration (cherry picked from commit b25f05bed4d8865c8d236576e99d8d44571702d4) Signed-off-by: Aanand Prasad --- docs/rails.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/rails.md b/docs/rails.md index 7394aadc8..9ce6c4a6f 100644 --- a/docs/rails.md +++ b/docs/rails.md @@ -40,8 +40,6 @@ Finally, `docker-compose.yml` is where the magic happens. This file describes th db: image: postgres - ports: - - "5432" web: build: . command: bundle exec rails s -p 3000 -b '0.0.0.0'