diff --git a/Dockerfile b/Dockerfile index e5d89d8f4..1bcdb3ed6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,15 +5,26 @@ LABEL maintainer Ascensio System SIA ARG PG_VERSION=14 -ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 DEBIAN_FRONTEND=noninteractive PG_VERSION=${PG_VERSION} +ENV LANG=en_US.UTF-8 \ + LANGUAGE=en_US:en \ + LC_ALL=en_US.UTF-8 \ + DEBIAN_FRONTEND=noninteractive \ + PG_VERSION=${PG_VERSION} ARG ONLYOFFICE_VALUE=onlyoffice -RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - apt-get -y update && \ - apt-get -yq install wget apt-transport-https gnupg locales lsb-release && \ - locale-gen en_US.UTF-8 && \ - echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections && \ +RUN set -eux; \ + echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d; \ + apt-get -y update; \ + apt-get -yq install \ + wget \ + apt-transport-https \ + gnupg \ + locales \ + lsb-release \ + ; \ + locale-gen en_US.UTF-8; \ + echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections; \ apt-get -yq install \ adduser \ apt-utils \ @@ -49,21 +60,24 @@ RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ supervisor \ ttf-mscorefonts-installer \ xvfb \ - zlib1g && \ - if [ $(ls -l /usr/share/fonts/truetype/msttcorefonts | wc -l) -ne 61 ]; \ - then echo 'msttcorefonts failed to download'; exit 1; fi && \ - echo "SERVER_ADDITIONAL_ERL_ARGS=\"+S 1:1\"" | tee -a /etc/rabbitmq/rabbitmq-env.conf && \ - sed -i "s/bind .*/bind 127.0.0.1/g" /etc/redis/redis.conf && \ - sed 's|\(application\/zip.*\)|\1\n application\/wasm wasm;|' -i /etc/nginx/mime.types && \ - pg_conftool $PG_VERSION main set listen_addresses 'localhost' && \ - service postgresql restart && \ - sudo -u postgres psql -c "CREATE USER $ONLYOFFICE_VALUE WITH password '$ONLYOFFICE_VALUE';" && \ - sudo -u postgres psql -c "CREATE DATABASE $ONLYOFFICE_VALUE OWNER $ONLYOFFICE_VALUE;" && \ - service postgresql stop && \ - service redis-server stop && \ - service rabbitmq-server stop && \ - service supervisor stop && \ - service nginx stop && \ + zlib1g \ + ; \ + if [ $(ls -1 /usr/share/fonts/truetype/msttcorefonts | wc -l) -ne 60 ]; then \ + echo 'msttcorefonts failed to download'; \ + exit 1; \ + fi; \ + echo "SERVER_ADDITIONAL_ERL_ARGS=\"+S 1:1\"" | tee -a /etc/rabbitmq/rabbitmq-env.conf; \ + sed -i "s/bind .*/bind 127.0.0.1/g" /etc/redis/redis.conf; \ + sed 's|\(application\/zip.*\)|\1\n application\/wasm wasm;|' -i /etc/nginx/mime.types; \ + pg_conftool $PG_VERSION main set listen_addresses 'localhost'; \ + service postgresql restart; \ + sudo -u postgres psql -c "CREATE USER $ONLYOFFICE_VALUE WITH password '$ONLYOFFICE_VALUE';"; \ + sudo -u postgres psql -c "CREATE DATABASE $ONLYOFFICE_VALUE OWNER $ONLYOFFICE_VALUE;"; \ + service postgresql stop; \ + service redis-server stop; \ + service rabbitmq-server stop; \ + service supervisor stop; \ + service nginx stop; \ rm -rf /var/lib/apt/lists/* COPY config /app/ds/setup/config/ @@ -83,18 +97,25 @@ ENV COMPANY_NAME=$COMPANY_NAME \ PRODUCT_EDITION=$PRODUCT_EDITION \ DS_DOCKER_INSTALLATION=true -RUN PACKAGE_FILE="${COMPANY_NAME}-${PRODUCT_NAME}${PRODUCT_EDITION}${PACKAGE_VERSION:+_$PACKAGE_VERSION}_${TARGETARCH:-$(dpkg --print-architecture)}.deb" && \ - wget -q -P /tmp "$PACKAGE_BASEURL/$PACKAGE_FILE" && \ - apt-get -y update && \ - service postgresql start && \ - apt-get -yq install /tmp/$PACKAGE_FILE && \ - service postgresql stop && \ - service supervisor stop && \ - chmod 755 /app/ds/*.sh && \ - rm -f /tmp/$PACKAGE_FILE && \ - rm -rf /var/log/$COMPANY_NAME && \ +RUN set -eux; \ + PACKAGE_FILE="${COMPANY_NAME}-${PRODUCT_NAME}${PRODUCT_EDITION}${PACKAGE_VERSION:+_$PACKAGE_VERSION}_${TARGETARCH:-$(dpkg --print-architecture)}.deb"; \ + wget -q -P /tmp "$PACKAGE_BASEURL/$PACKAGE_FILE"; \ + apt-get -y update; \ + service postgresql start; \ + apt-get -yq install /tmp/$PACKAGE_FILE; \ + service postgresql stop; \ + service supervisor stop; \ + chmod 755 /app/ds/*.sh; \ + rm -f /tmp/$PACKAGE_FILE; \ + rm -rf /var/log/$COMPANY_NAME; \ rm -rf /var/lib/apt/lists/* -VOLUME /var/log/$COMPANY_NAME /var/lib/$COMPANY_NAME /var/www/$COMPANY_NAME/Data /var/lib/postgresql /var/lib/rabbitmq /var/lib/redis /usr/share/fonts/truetype/custom +VOLUME /var/log/$COMPANY_NAME \ + /var/lib/$COMPANY_NAME \ + /var/www/$COMPANY_NAME/Data \ + /var/lib/postgresql \ + /var/lib/rabbitmq \ + /var/lib/redis \ + /usr/share/fonts/truetype/custom ENTRYPOINT ["/app/ds/run-document-server.sh"] diff --git a/production.dockerfile b/production.dockerfile index 0706a58ac..56abdc5a4 100644 --- a/production.dockerfile +++ b/production.dockerfile @@ -1,4 +1,4 @@ -### Arguments avavlivable only for FROM instruction ### +### Arguments avavlivable only for FROM instruction ### ARG PULL_TAG=latest ARG COMPANY_NAME=onlyoffice ARG PRODUCT_EDITION= @@ -8,7 +8,7 @@ ARG PRODUCT_EDITION= FROM ${COMPANY_NAME}/4testing-documentserver${PRODUCT_EDITION}:${PULL_TAG} as documentserver-stable ### Build nonexample ### - + FROM ${COMPANY_NAME}/documentserver${PRODUCT_EDITION}:${PULL_TAG} as documentserver-nonexample ARG COMPANY_NAME=onlyoffice @@ -17,8 +17,9 @@ ARG DS_SUPERVISOR_CONF=/etc/supervisor/conf.d/ds.conf ### Remove all documentserver-example data ### -RUN rm -rf /var/www/$COMPANY_NAME/$PRODUCT_NAME-example \ - && rm -rf /etc/$COMPANY_NAME/$PRODUCT_NAME-example \ - && rm -f $DS_SUPERVISOR_CONF \ - && rm -f /etc/nginx/includes/ds-example.conf \ - && ln -s /etc/$COMPANY_NAME/$PRODUCT_NAME/supervisor/ds.conf $DS_SUPERVISOR_CONF +RUN set -eux; \ + rm -rf /var/www/$COMPANY_NAME/$PRODUCT_NAME-example; \ + rm -rf /etc/$COMPANY_NAME/$PRODUCT_NAME-example; \ + rm -f $DS_SUPERVISOR_CONF; \ + rm -f /etc/nginx/includes/ds-example.conf; \ + ln -s /etc/$COMPANY_NAME/$PRODUCT_NAME/supervisor/ds.conf $DS_SUPERVISOR_CONF