From 0f5cd9487c37202daf23cc4824614d555945701a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Wed, 29 Jun 2016 13:18:01 -0500 Subject: [PATCH] Update README.md: links & typos --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 433ed22..aab4497 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,19 @@ docker-rosariosis ================= -A Dockerfile that installs the latest [RosarioSIS](http://www.rosariosis.org/). This file pulls from the master branch, but can be easily modified to pull from any other available branch or tagged release. +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. ## Installation ``` -git clone https://github.com/larryprice/docker-rosario.git -cd docker-rosario +git clone https://github.com/francoisjacquet/docker-rosariosis.git +cd docker-rosariosis docker build -t rosariosis . ``` ## Usage -RosarioSIS uses a Postgres database: +RosarioSIS uses a PostgreSQL database: ``` bash $ docker run --name rosariodb -d postgres:9.4 --restart=always @@ -24,7 +24,7 @@ Port 80 will be exposed, so you can visit `localhost` to get started. The defaul ## SMTP -RosarioSIS will attempt to send mail via the host's port 25. In order for this to work you must set the hostname of the resariosis container to that of host (or some other hostname that your can appear on a legal FROM line) and configure the host to accept SMTP from the container. For postfix this means adding the container IP addresses to /etc/postfix/main.cf as in: +RosarioSIS will attempt to send mail via the host's port 25. In order for this to work you must set the hostname of the rosariosis container to that of host (or some other hostname that your can appear on a legal FROM line) and configure the host to accept SMTP from the container. For postfix this means adding the container IP addresses to /etc/postfix/main.cf as in: mynetworks = 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128