-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
282 additions
and
2,063 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
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,41 @@ | ||
FROM epicmorg/websites:php7.2 | ||
|
||
ARG TESTRAIL_VERSION=latest | ||
ARG DOWNLOAD_URL=https://secure.gurock.com/downloads/testrail/testrail-${TESTRAIL_VERSION}-ion71.zip | ||
ARG TESTRAIL_RELEASE_DIR=testrail-release | ||
|
||
ENV TR_DEFAULT_TASK_EXECUTION=60 | ||
ENV TR_CONFIGPATH="/var/www/testrail/config/" | ||
ENV TR_DEFAULT_LOG_DIR="/opt/testrail/logs/" | ||
ENV TR_DEFAULT_AUDIT_DIR="/opt/testrail/audit/" | ||
ENV TR_DEFAULT_REPORT_DIR="/opt/testrail/reports/" | ||
ENV TR_DEFAULT_ATTACHMENT_DIR="/opt/testrail/attachments/" | ||
ENV OPENSSL_CONF=/etc/ssl/ | ||
|
||
RUN \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends curl zip unzip wget iputils-ping mariadb-client openssl && \ | ||
apt-get install -y --no-install-recommends zlib1g-dev libcurl4-gnutls-dev libldap2-dev zlib1g-dev libxml2-dev libfontconfig1 && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
rm -rf /run.sh | ||
|
||
|
||
RUN \ | ||
echo "WGET" && \ | ||
mkdir -p /${TESTRAIL_RELEASE_DIR} && \ | ||
mkdir -p /var/www/testrail && \ | ||
mkdir -p /opt/testrail/attachments /opt/testrail/reports /opt/testrail/logs /opt/testrail/audit && \ | ||
wget --no-check-certificate -O /${TESTRAIL_RELEASE_DIR}/testrail.zip ${DOWNLOAD_URL} && \ | ||
chown -R www-data:www-data /${TESTRAIL_RELEASE_DIR} && \ | ||
chown -R www-data:www-data /var/www/testrail && \ | ||
chown -R www-data:www-data /opt/testrail | ||
|
||
|
||
COPY apache_testrail.conf /${TESTRAIL_RELEASE_DIR}/apache-conf/000-default.conf | ||
COPY run.sh /run.sh | ||
|
||
WORKDIR /var/www/testrail | ||
EXPOSE 80 | ||
|
||
CMD ["/run.sh"] |
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.