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

Update Dockerfile to COPY ./etc/ /etc/ #5

Merged
merged 1 commit into from Nov 14, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Expand Up @@ -10,6 +10,12 @@ 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