Skip to content

Commit

Permalink
added readme file. Fixed maintainer lines to new style LABEL format
Browse files Browse the repository at this point in the history
  • Loading branch information
James Babb committed Nov 22, 2017
1 parent f423a64 commit cdb7d5e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## Overview

A simple dockerized deployment of midpoint tied to an included mysql database.

Features a possible way to automatically import resources on first run.

## Building

From source:

```
$ ./build.sh
```

This will build each container needed.

## Running

To run:

```
$ docker-compose up
```

## Published Ports / Where to Go

* localhost:3306 -> MySQL Database. Log in with root/root
* http://localhost:8081/midpoint -> Midpoint. Log in with administrator/5ecr3t


## Authors

* James Babb (james.babb@wisc.edu)
* Tom Jordan (tom.jordan@wisc.edu)

## LICENSE
2 changes: 1 addition & 1 deletion deps/mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM mysql:latest

MAINTAINER "TIER API & EntReg Working Group <tier-api@internet2.edu>"
LABEL authors="james.babb@wisc.edu, tom.jordan@wisc.edu"

ENV MYSQL_ROOT_PASSWORD root

Expand Down
2 changes: 1 addition & 1 deletion midpoint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM tomcat:8.0.44-jre8
ENV JAVA_OPTS="-server -Xms256m -Xmx512m -Dmidpoint.home=/var/opt/midpoint/ -Djavax.net.ssl.trustStore=/var/opt/midpoint/keystore.jceks -Djavax.net.ssl.trustStoreType=jceks"

MAINTAINER info@evolveum.com
LABEL authors="james.babb@wisc.edu, tom.jordan@wisc.edu"

ENV version 3.6.1

Expand Down

0 comments on commit cdb7d5e

Please sign in to comment.