1
0

chore(initial): initial commit

This commit is contained in:
sido
2018-02-28 19:16:49 +01:00
commit b9388c6a4c
13 changed files with 243 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# MOLGENIS
### Flexible software for scientific data
#### Process, manage, query, annotate, integrate, analyse, share
This template creates a MOLGENIS stack on top of Rancher. It creates 3 docker services:
- MOLGENIS instance
- Postgress instance
- ElasticSearch instance
## Usage:
- Select MOLGENIS from catalog
- Enter the name of the replica set
- Click deploy
MOLGENIS can now be accessed over the Rancher network.

View File

@ -0,0 +1,22 @@
app:
image: sidohaakma/molgenis-docker:2.0.0
ports:
- 8081:8080
links:
- db
volumes:
- app-data:/opt/molgenis
labels:
io.rancher.container.create_agent: 'true'
io.rancher.scheduler.global: 'true'
db:
build: ./db
expose:
- 5432
volumes:
- db-data:/var/lib/postgresql/data
labels:
io.rancher.container.create_agent: 'true'
volumes:
db-data:
app-data:

View File

@ -0,0 +1,5 @@
.catalog:
name: molgenis
version: v2.0.0
description: Molgenis
minimum_rancher_version: v1.6.3