-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from internet2/feature-comanage
Feature comanage
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| # initial commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| FROM i2incommon/comanage-registry:3.3.1-20200930 | ||
|
|
||
| ENV COMANAGE_REGISTRY_ADMIN_FAMILY_NAME=XXXXX | ||
| ENV COMANAGE_REGISTRY_ADMIN_USERNAME=XXXX | ||
| ENV COMANAGE_REGISTRY_DATASOURCE=Database/Mysql | ||
| ENV COMANAGE_REGISTRY_DATABASE=registry | ||
| ENV COMANAGE_REGISTRY_DATABASE_HOST=xxxx.at.internet2.edu | ||
| ENV COMANAGE_REGISTRY_DATABASE_USER=registry_user | ||
| ENV COMANAGE_REGISTRY_DATABASE_USER_PASSWORD=xxxx | ||
| ENV COMANAGE_REGISTRY_EMAIL_FROM=xxxx@example.edu | ||
| ENV COMANAGE_REGISTRY_EMAIL_TRANSPORT=Smtp | ||
| ENV COMANAGE_REGISTRY_EMAIL_PORT=25 | ||
| ENV COMANAGE_REGISTRY_EMAIL_HOST=smtp.example.edu | ||
| # COMANAGE_REGISTRY_SECURITY_SALT - autogenerated if not specified | ||
| # COMANAGE_REGISTRY_SECURITY_SEED - autogenerated if not specified | ||
| ENV HTTPS_CERT_FILE=/etc/pki/tls/certs/localhost.crt | ||
| ENV HTTPS_KEY_FILE=/etc/pki/tls/private/localhost.key | ||
| ENV MYSQL_ROOT_PASSWORD=xxxx | ||
| ENV MYSQL_DATABASE=registry | ||
| ENV MYSQL_USER=registry_user | ||
| ENV MYSQL_PASSWORD_FILE=xxxx | ||
| #ENV SHIBBOLETH_SP_CERT=/etc/shibboleth/sp-cert.pem | ||
| #ENV SHIBBOLETH_SP_PRIVKEY=/etc/shibboleth/sp-key.pem | ||
| #ENV SHIBBOLETH_SP_ENTITY_ID=comanage.example.edu | ||
| #ENV SHIBBOLETH_SP_METADATA_PROVIDER_XML=sdf | ||
| #ENV SHIBBOLETH_SP_SAMLDS_URL=thing | ||
|
|
||
| RUN yum -y update && yum -y install --setopt=tsflags=nodocs epel-release python-pip && pip install awscli && pip install --upgrade pip | ||
|
|
||
| ARG maintainer=my | ||
| ARG imagename=comanage | ||
| ARG version=3.3.1 | ||
|
|
||
| LABEL Version=$version | ||
| ENV VERSION=$version | ||
|
|
||
| ENV LD_LIBRARY_PATH=/opt/shibboleth/lib64 |