From c4ea794e4e1daa91887bf16a6289edc3d03fe111 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Wed, 22 Apr 2015 21:21:03 +0530 Subject: [PATCH] docker-compose: renamed fig.yml to docker compose.yml Closes #289 --- README.md | 8 ++++---- fig.yml => docker-compose.yml | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename fig.yml => docker-compose.yml (100%) diff --git a/README.md b/README.md index df08d926..2ccbf40d 100644 --- a/README.md +++ b/README.md @@ -169,14 +169,14 @@ docker run --name='gitlab' -it --rm \ sameersbn/gitlab:7.9.4 ``` -Or you can use [fig](http://www.fig.sh/). Assuming you have fig installed, +Or you can use [docker-compose](https://docs.docker.com/compose/). Assuming you have docker-compose installed, ```bash -wget https://raw.githubusercontent.com/sameersbn/docker-gitlab/master/fig.yml -fig up +wget https://raw.githubusercontent.com/sameersbn/docker-gitlab/master/docker-compose.yml +docker-compose up ``` -*The rest of the document will use the docker command line. You can quite simply adapt your configuration into a fig.yml file if you wish to do so.* +*The rest of the document will use the docker command line. You can quite simply adapt your configuration into a `docker-compose.yml` file if you wish to do so.* __NOTE__: Please allow a couple of minutes for the GitLab application to start. diff --git a/fig.yml b/docker-compose.yml similarity index 100% rename from fig.yml rename to docker-compose.yml