From b5d1979d58d3d35df013d5cfd6ad4c2656211335 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Wed, 6 Aug 2014 16:33:31 -0700 Subject: [PATCH] Use official repos on home page Signed-off-by: Ben Firshman --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index a75e357b07..e522f47452 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,7 +7,7 @@ title: Fig | 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 @@ -23,7 +23,7 @@ web: ports: - "8000:8000" db: - image: orchardup/postgresql + image: postgres ``` (No more installing Postgres on your laptop!)