Skip to content
This repository has been archived by the owner. It is now read-only.

2.0.0 #30

Merged
merged 4 commits into from
Mar 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ FROM tier/shibboleth_sp
ARG registry=docker.io
ARG maintainer=tier
ARG imagename=comanage
ARG version=1.0.6
ARG tierversion=17020
ARG version=2.0.0-rc2
ARG tierversion=17030

MAINTAINER $maintainer
LABEL Vendor="Internet2"
Expand Down Expand Up @@ -96,22 +96,23 @@ RUN mkdir /opt/shared \
&& chmod +x /opt/autoexec/firstrun/*.sh \
&& chmod +x /opt/autoexec/onbuild/*.sh

# Environment variables
ENV ADMIN_GIVEN_NAME "Scott"
ENV ADMIN_FAMILY_NAME "Koranda"
ENV ADMIN_EPPN "scott.koranda@sphericalcowgroup.com"
ENV COMANAGE_SERVER_FQDN "comanage.testbed.tier.internet2.edu"
ENV COMANAGE_MAIL_FROM "comanage_registry@picard.cgac.uwm.edu"
# Change the following values to match that of your deployment when doing a native COmanage Docker deployment.
# If using the TIER COmanage Virtual Machine (https://testbed.tier.internet2.edu/), these values will be configured
# with the setup script
ENV ADMIN_GIVEN_NAME "Admin"
ENV ADMIN_FAMILY_NAME "Adming"
ENV ADMIN_EPPN "admin@example.edu"
ENV COMANAGE_SERVER_FQDN "comanage.example.edu"
ENV COMANAGE_MAIL_FROM "comanage_registry@comanage.example.edu"
ENV COMANAGE_MAIL_HOST "localhost"
ENV COMANAGE_MAIL_PORT "25"
ENV COMANAGE_MAIL_USER "user"
ENV COMANAGE_MAIL_PASS "secret"
ENV MYSQL_HOST "i2mariadb"
ENV MYSQL_DATABASE "registry"
ENV MYSQL_USER "registry_user"
ENV MYSQL_PASSWORD "WJzesbe3poNZ91qIbmR7"
ENV MYSQL_PASSWORD "mysql_password"
ENV ADMIN_FAMILY_NAME "admin"
ENV ADMIN_EPPN "admin"
ENV ADMIN_GIVEN_NAME "admin"

# How long will we wait for MariaDB to start up?
Expand All @@ -134,7 +135,7 @@ RUN ln -s /opt/etc/httpd/conf.d/ports.conf /etc/httpd/conf.d/ports.conf && \
ln -s /opt/etc/php/email.php /opt/comanage/comanage-registry-$version/local/Config/email.php && \
rm -f /opt/comanage/comanage-registry-$version/app/Config/email.php && \
ln -s /opt/etc/php/email.php /opt/comanage/comanage-registry-$version/app/Config/email.php && \
ln -s /opt/comanage/comanage-registry-1.0.6/app/webroot /var/www/html/registry && \
ln -s /opt/comanage/comanage-registry-$VERSION/app/webroot /var/www/html/registry && \
rm /etc/httpd/conf/httpd.conf && \
ln -s /opt/etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf && \
/opt/autoexec/bin/onbuild.sh
Expand Down
2 changes: 1 addition & 1 deletion common.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#
maintainer="bigfleet"
imagename="comanage"
version="1.0.6"
version="2.0.0-rc2"