From d3f88cace5804e8a6ca7e51304ed0b55f5fa0070 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 10 Oct 2014 11:06:49 +0100 Subject: [PATCH] Mention names of config files 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 c3e360a2..f2cdc83c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,14 +5,14 @@ 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 a `Dockerfile` so it can be reproduced anywhere: FROM python:2.7 ADD . /code WORKDIR /code RUN pip install -r requirements.txt -Define the services that make up your app so they can be run together in an isolated environment: +Define the services that make up your app in `fig.yml` so they can be run together in an isolated environment: ```yaml web: