From ffaafbe941cdf4d0e2c7f6fbfd6cf8ad97fa577d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Wed, 29 Jun 2016 17:06:44 -0500 Subject: [PATCH] Add Minimum requirements to README.md --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e27c503..e6d1f85 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,23 @@ -docker-rosariosis +Docker RosarioSIS ================= -A Dockerfile (see [Docker website](https://www.docker.com/) from more info) that installs the latest [RosarioSIS](https://www.rosariosis.org/). This file pulls from the default branch, but can be easily modified to pull from any other available branch or tagged release. +A Dockerfile that installs the latest [RosarioSIS](https://www.rosariosis.org/). This file pulls from the default branch, but can be easily modified to pull from any other available branch or tagged release. ## Installation -``` -git clone https://github.com/francoisjacquet/docker-rosariosis.git -cd docker-rosariosis -docker build -t rosariosis . +Minimum requirements: [Docker](https://www.docker.com/) & Git working. + +```bash +$ git clone https://github.com/francoisjacquet/docker-rosariosis.git +$ cd docker-rosariosis +$ docker build -t rosariosis . ``` ## Usage RosarioSIS uses a PostgreSQL database: -``` bash +```bash $ docker run --name rosariodb -d postgres:9.5 --restart=always $ docker run -e "ROSARIOSIS_ADMIN_EMAIL=admin@example.com" -h `hostname -f` -d -p 80:80 --name rosariosis --link rosariodb:rosariodb rosariosis --restart=always ```