浏览代码

Use official repos on home page

Signed-off-by: Ben Firshman <[email protected]>
Ben Firshman 11 年之前
父节点
当前提交
b5d1979d58
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/index.md

+ 2 - 2
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!)