This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
comanage-appliance/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (16 sloc)
710 Bytes
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
FROM bigfleet/comanage | |
ARG maintainer=my | |
ARG imagename=comanage | |
ARG version=2.0.0 | |
LABEL Version=$version | |
ENV VERSION=$version | |
#ADD ./container_files /opt/ | |
COPY autoexec/ /opt/autoexec/ | |
COPY certs/ /opt/httpd/ssl/ | |
# Copy any files found in /home/comanage/build/comanage/etc over to the container in /etc/, this is useful for shibboleth | |
# e.g. /etc/shibboleth2.xml, /etc/shibboleth/sp-key.pem, /etc/shibboleth/sp-cert.pem, /etc/shibboleth/inc-md-cert.pem, | |
# /etc/shibboleth/InCommon-metadata.xml | |
COPY ./etc/ /etc/ | |
COPY conf/00-comanage-443.conf /opt/etc/httpd/conf.d/virtual_host_443.conf | |
RUN ln -s /opt/etc/httpd/conf.d/virtual_host_443.conf /etc/httpd/conf.d/00-comanage-443.conf | |
VOLUME /etc/httpd/logs |