docker-rosariosis/README.md

24 lines
755 B
Markdown
Raw Normal View History

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.
## Installation
```
git clone https://github.com/larryprice/docker-rosario.git
cd docker-rosario
docker build -t rosariosis .
```
## Usage
RosarioSIS uses a Postgres database:
``` bash
2015-05-18 00:41:02 +00:00
$ docker run --name rosariodb -d postgres:9.4 --restart=always
$ docker run -h `hostname -f` -d -p 80:80 --name rosariosis --link rosariodb:rosariodb rosariosis --restart=always
```
Port 80 will be exposed, so you can visit `localhost` to get started. The default username is `admin` and the default password is `admin`.