diff --git a/2.9/Dockerfile b/2.9/Dockerfile index 728a001..621725f 100644 --- a/2.9/Dockerfile +++ b/2.9/Dockerfile @@ -18,8 +18,6 @@ ENV APACHE_RUN_USER=apache APACHE_RUN_GROUP=apache \ VOLUME /var/lib/ocsinventory-reports /etc/ocsinventory-server /usr/share/ocsinventory-reports/ocsreports/extensions -WORKDIR /tmp - RUN yum ${YUM_FLAGS} install wget \ curl \ yum-utils \ @@ -36,7 +34,7 @@ RUN yum ${YUM_FLAGS} install wget \ perl-Compress-Zlib \ perl-DBI perl-DBD-MySQL \ perl-Net-IP \ - perl-SOAP-Lite \ + perl-Apache2-SOAP \ perl-Archive-Zip \ perl-Mojolicious \ perl-Plack \ @@ -65,21 +63,29 @@ RUN yum ${YUM_FLAGS} install wget \ php73-php-zip \ php73-php-opcache ; -RUN wget https://github.com/OCSInventory-NG/OCSInventory-ocsreports/releases/download/${OCS_VERSION}/OCSNG_UNIX_SERVER-${OCS_VERSION}.tar.gz && \ - tar xzf OCSNG_UNIX_SERVER-${OCS_VERSION}.tar.gz ; +RUN wget https://github.com/OCSInventory-NG/OCSInventory-ocsreports/releases/download/${OCS_VERSION}/OCSNG_UNIX_SERVER-${OCS_VERSION}.tar.gz -P /tmp && \ + tar xzf /tmp/OCSNG_UNIX_SERVER-${OCS_VERSION}.tar.gz -C /tmp; -WORKDIR /tmp/OCSNG_UNIX_SERVER-${OCS_VERSION} - -RUN cd Apache/ && \ - perl Makefile.PL && \ +RUN cd /tmp/OCSNG_UNIX_SERVER-${OCS_VERSION}/Apache/ && \ + perl Makefile.PL && \ make && \ make install ; -WORKDIR /tmp +WORKDIR /etc/httpd/conf.d + +# Redirect Apache2 Logs to stdout e stderr +# https://github.com/docker-library/httpd/blob/5f92ab18146f41d1d324e99c5e197bdeda65d063/2.4/Dockerfile#L202 +RUN sed -ri \ + -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' \ + -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' \ + -e 's!^(\s*TransferLog)\s+\S+!\1 /proc/self/fd/1!g' \ + "/etc/httpd/conf/httpd.conf" COPY conf/ /tmp/conf COPY ./scripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh EXPOSE 80 443 +# https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#entrypoint ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"] +CMD ["/usr/sbin/httpd", "-DFOREGROUND"] diff --git a/2.9/conf/ocsinventory-server.conf b/2.9/conf/ocsinventory-server.conf index d4e461f..42aae79 100644 --- a/2.9/conf/ocsinventory-server.conf +++ b/2.9/conf/ocsinventory-server.conf @@ -186,6 +186,8 @@ PerlSetEnv OCS_OPT_IPDISCOVER_NO_POSTPONE 0 # Enable groups for ipdiscover (for example, you might want to prevent some groups to be ipdiscover agents) PerlSetEnv OCS_OPT_IPDISCOVER_USE_GROUPS 1 + # Link ipdiscover network to computer TAG + PerlSetEnv OCS_OPT_IPDISCOVER_LINK_TAG_NETWORK 0 # ===== INVENTORY FILES MAPPING SETTINGS ===== @@ -378,4 +380,4 @@ require "SOAP_USER" - \ No newline at end of file + diff --git a/2.9/scripts/docker-entrypoint.sh b/2.9/scripts/docker-entrypoint.sh index cbd543b..102cd18 100755 --- a/2.9/scripts/docker-entrypoint.sh +++ b/2.9/scripts/docker-entrypoint.sh @@ -49,6 +49,13 @@ if [ ! -z ${OCS_DISABLE_WEB_MODE+x} ]; then echo fi +echo "+----------------------------------------------------------+" +echo "| Setting Apache Server Name to '${APACHE_SERVER_NAME:-localhost}'" +echo "+----------------------------------------------------------+" +echo +sed -ri -e "s!^#(ServerName)\s+\S+!\1 ${APACHE_SERVER_NAME:-localhost}:80!g" \ + "/etc/httpd/conf/httpd.conf" + # Configure z-ocsinventory-server file if [ ! -f ${SRV_CONF_FILE} ] && [ -z ${OCS_DISABLE_COM_MODE+x} ]; then cp /tmp/conf/ocsinventory-server.conf ${SRV_CONF_FILE} @@ -155,4 +162,4 @@ echo "| Starting OCS Inventory NG Management Docker... |" echo "+----------------------------------------------------------+" echo -/usr/sbin/httpd -DFOREGROUND +exec "$@" \ No newline at end of file