From c270c13baae5dd15cd1a39633d61f9f0be27da5f Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 28 Jan 2014 14:39:21 +0000 Subject: [PATCH] Move command to fig.yml As done in the getting started guides. Easier to explain like this, I think. --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index cd664527..d50a417f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -11,13 +11,13 @@ Define your app's environment with Docker so it can be reproduced anywhere: ADD . /code WORKDIR /code RUN pip install -r requirements.txt - CMD python app.py Define the services that make up your app so they can be run together in an isolated environment: ```yaml web: build: . + command: python app.py links: - db ports: