diff --git a/docs/django.md b/docs/django.md
index 8ecb3641e..c85eb5070 100644
--- a/docs/django.md
+++ b/docs/django.md
@@ -28,8 +28,6 @@ Simple enough. Finally, this is all tied together with a file called `fig.yml`.
 
     db:
       image: orchardup/postgresql
-      ports:
-        - "5432"
     web:
       build: .
       command: python manage.py runserver 0.0.0.0:8000
diff --git a/docs/wordpress.md b/docs/wordpress.md
index a2f1bcf4a..5eff34879 100644
--- a/docs/wordpress.md
+++ b/docs/wordpress.md
@@ -33,8 +33,6 @@ web:
     - .:/code
 db:
   image: orchardup/mysql
-  ports:
-    - "3306:3306"
   environment:
     MYSQL_DATABASE: wordpress
 ```