Skip to content
This repository has been archived by the owner on May 5, 2018. It is now read-only.

ua-eas/docker-apache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Environment Variables

Apache requires that you set the global ServerName. This needs to be passed in as an environment variable called SERVER_NAME

Volumes

This container assumes that it has a security container mounted which contains certificates, keys, and othe credential information.

Command

The startup script is start_apache.sh. This script will copy in any required secure credentials or keys from the mounted /security directory and start shibboleth and apache.

Docker Run Example

Below is an example docker run command to get Apache running.

sudo docker run -d -p 80:80 \
-e "SERVER_NAME=ka-tools.mosaic.arizona.edu" \
--name ksd-tools-apache \
--link ksd-tools-jenkins:ksd-tools-jenkins \
--link ksd-tools-nexus:ksd-tools-nexus \
-v /kuali-configs/security/tools/apache/:/security \
easksd/tools-apache /start_apache.sh

This will start the Apache Docker container as a daemon process. It will run the default startup script which is:

$ /start_apache.sh

Releases

No releases published

Packages

No packages published

Languages

  • HTML 58.8%
  • ApacheConf 36.5%
  • Shell 4.7%