浏览代码

Move command to fig.yml

As done in the getting started guides. Easier to explain like this,
I think.
Ben Firshman 11 年之前
父节点
当前提交
c270c13baa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/index.md

+ 1 - 1
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: