From cdb7d5eceb4de8c3860a8d5280b1ec08aa05671c Mon Sep 17 00:00:00 2001 From: James Babb Date: Wed, 22 Nov 2017 09:05:29 -0600 Subject: [PATCH] added readme file. Fixed maintainer lines to new style LABEL format --- README.md | 36 ++++++++++++++++++++++++++++++++++++ deps/mysql/Dockerfile | 2 +- midpoint/Dockerfile | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca7c5fb --- /dev/null +++ b/README.md @@ -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 diff --git a/deps/mysql/Dockerfile b/deps/mysql/Dockerfile index 3edec79..548d306 100644 --- a/deps/mysql/Dockerfile +++ b/deps/mysql/Dockerfile @@ -1,6 +1,6 @@ FROM mysql:latest -MAINTAINER "TIER API & EntReg Working Group " +LABEL authors="james.babb@wisc.edu, tom.jordan@wisc.edu" ENV MYSQL_ROOT_PASSWORD root diff --git a/midpoint/Dockerfile b/midpoint/Dockerfile index 22a5ad5..638da53 100644 --- a/midpoint/Dockerfile +++ b/midpoint/Dockerfile @@ -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