This page requires advanced Docker and Docker-Compase know how!
How to start a codeBeamer application with MySql and Apache without docker-compose
Achieve running codeBeamer application with MySQL
Please follow the steps described here.
Add Apache HTTP frontend server
Properties:
- Port 8887 and 8888 are published for HTTP and HTTPS.
- Network is already configured before for codebeamer-app and codebeamer-db containers, see the link above
If you want to apply your own certificate, you can bind mount as below:
export CRT=<path to your certificate>
export CRT_KEY=<path to your certificate key>
# Optionally
export CA_BUNDLE=<path to your certificate authority bundle>
Then start Apache HTTP container
docker run --name codebeamer-httpd -p 8887:8887 -p 8888:8888 --network=codebeamer --link=codebeamer-app -v ${CRT}:/home/appuser/certificates/pem/certificate-file.pem -v ${CRT_KEY}:/home/appuser/certificates/pem/certificate-key-file.pem -v ${CA_BUNDLE}=/home/appuser/certificates/pem/ca-bundle.crt intland/httpd:1.0