From cc29b21bfca9781a7e3217d9c09c561e9ab096f6 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Mon, 27 Jan 2014 18:15:52 +0000 Subject: [PATCH] Clearer introduction --- docs/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 3d8e2cd655..090e90b9ea 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,7 +5,7 @@ title: Fig | Fast, isolated development environments using Docker Fast, isolated development environments using Docker. -Define your app's environment with Docker so it can be reproduced anywhere. +Define your app's environment with Docker so it can be reproduced anywhere: FROM orchardup/python:2.7 ADD . /code @@ -13,7 +13,7 @@ Define your app's environment with Docker so it can be reproduced anywhere. WORKDIR /code CMD python app.py -Define your app's services so they can be run alongside in an isolated environment. (No more installing Postgres on your laptop!) +Define your app's services so they can be run alongside in an isolated environment: ```yaml web: @@ -26,6 +26,8 @@ db: image: orchardup/postgresql ``` +(No more installing Postgres on your laptop!) + Then type `fig up`, and Fig will start and run your entire app: ![example fig run](https://orchardup.com/static/images/fig-example-large.f96065fc9e22.gif)