From 16744bc78b2478fd77a55e58c63a3a77218cd8dd Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Thu, 7 Aug 2014 14:48:29 -0700 Subject: [PATCH] Switch to official images in readme Signed-off-by: Ben Firshman --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 924232185..f83e0a869 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Fast, isolated development environments using Docker. Define your app's environment with Docker so it can be reproduced anywhere: - FROM orchardup/python:2.7 + FROM python:2.7 ADD . /code WORKDIR /code RUN pip install -r requirements.txt @@ -25,7 +25,7 @@ web: - "8000:8000" - "49100:22" db: - image: orchardup/postgresql + image: postgres ``` (No more installing Postgres on your laptop!)