2022-10-31 13:24:17 +01:00
ARG BASE_IMAGE=ubuntu:22.04
2022-03-09 16:45:56 +01:00
2022-10-31 13:24:17 +01:00
FROM ${BASE_IMAGE} as documentserver
2023-03-09 12:19:40 +01:00
LABEL maintainer Jiří Štefka <jiri.stefka.js@gmail.com>
2015-04-17 17:25:41 +02:00
2022-10-31 13:24:17 +01:00
ARG PG_VERSION=14
2015-04-17 17:25:41 +02:00
2022-10-31 13:24:17 +01:00
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 DEBIAN_FRONTEND=noninteractive PG_VERSION=${PG_VERSION}
2019-10-21 10:51:06 +02:00
ARG ONLYOFFICE_VALUE=onlyoffice
2022-05-15 18:33:57 +02:00
2015-04-17 17:25:41 +02:00
RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \
2016-06-30 11:41:52 +02:00
apt-get -y update && \
2022-12-20 12:54:23 +01:00
apt-get -yq install wget apt-transport-https gnupg locales lsb-release && \
2015-04-17 17:25:41 +02:00
locale-gen en_US.UTF-8 && \
2020-10-08 14:58:07 +02:00
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections && \
2017-12-12 15:02:14 +01:00
apt-get -yq install \
adduser \
2019-12-26 10:42:27 +01:00
apt-utils \
2017-12-12 15:02:14 +01:00
bomstrip \
2020-10-22 12:47:51 +02:00
certbot \
2024-01-18 08:20:37 +01:00
cron \
2020-11-20 08:53:36 +01:00
curl \
2017-12-12 15:02:14 +01:00
htop \
libasound2 \
libboost-regex-dev \
libcairo2 \
2019-12-26 10:42:27 +01:00
libcurl3-gnutls \
2020-11-20 08:53:36 +01:00
libcurl4 \
2020-02-19 17:54:20 +01:00
libgtk-3-0 \
2017-12-12 15:02:14 +01:00
libnspr4 \
libnss3 \
libstdc++6 \
libxml2 \
libxss1 \
libxtst6 \
2019-10-29 10:42:43 +01:00
mysql-client \
2017-12-12 15:02:14 +01:00
nano \
net-tools \
2020-11-07 22:50:00 +01:00
netcat-openbsd \
2017-12-12 15:02:14 +01:00
nginx-extras \
postgresql \
postgresql-client \
pwgen \
rabbitmq-server \
redis-server \
software-properties-common \
sudo \
supervisor \
2020-10-08 14:58:07 +02:00
ttf-mscorefonts-installer \
2017-12-12 15:02:14 +01:00
xvfb \
zlib1g && \
2020-10-08 14:58:07 +02:00
if [ $(ls -l /usr/share/fonts/truetype/msttcorefonts | wc -l) -ne 61 ]; \
then echo 'msttcorefonts failed to download'; exit 1; fi && \
2019-11-26 15:08:29 +01:00
echo "SERVER_ADDITIONAL_ERL_ARGS=\"+S 1:1\"" | tee -a /etc/rabbitmq/rabbitmq-env.conf && \
2019-12-26 10:42:27 +01:00
sed -i "s/bind .*/bind 127.0.0.1/g" /etc/redis/redis.conf && \
2020-02-17 10:25:38 +01:00
sed 's|\(application\/zip.*\)|\1\n application\/wasm wasm;|' -i /etc/nginx/mime.types && \
2020-11-20 08:53:36 +01:00
pg_conftool $PG_VERSION main set listen_addresses 'localhost' && \
2019-12-26 10:42:27 +01:00
service postgresql restart && \
2019-10-21 10:51:06 +02:00
sudo -u postgres psql -c "CREATE USER $ONLYOFFICE_VALUE WITH password '$ONLYOFFICE_VALUE';" && \
2023-02-07 14:08:40 +01:00
sudo -u postgres psql -c "CREATE DATABASE $ONLYOFFICE_VALUE OWNER $ONLYOFFICE_VALUE;" && \
2016-08-25 18:52:14 +02:00
service postgresql stop && \
2016-06-30 11:41:52 +02:00
service redis-server stop && \
service rabbitmq-server stop && \
service supervisor stop && \
2022-05-12 21:03:31 +02:00
service nginx stop && \
rm -rf /var/lib/apt/lists/*
2022-03-09 16:45:56 +01:00
2023-07-13 16:51:03 +02:00
COPY config/supervisor/supervisor /etc/init.d/
COPY config/supervisor/ds/*.conf /etc/supervisor/conf.d/
2019-10-21 10:51:06 +02:00
COPY run-document-server.sh /app/ds/run-document-server.sh
2015-04-17 17:25:41 +02:00
2016-06-30 11:41:52 +02:00
EXPOSE 80 443
2019-10-21 10:51:06 +02:00
ARG COMPANY_NAME=onlyoffice
ARG PRODUCT_NAME=documentserver
2022-09-16 11:28:44 +02:00
ARG PRODUCT_EDITION=
2022-10-11 11:52:48 +02:00
ARG PACKAGE_VERSION=
2022-09-16 11:28:44 +02:00
ARG TARGETARCH
ARG PACKAGE_BASEURL="http://download.onlyoffice.com/install/documentserver/linux"
2019-10-21 10:51:06 +02:00
2020-06-04 14:15:34 +02:00
ENV COMPANY_NAME=$COMPANY_NAME \
2022-06-15 09:30:18 +02:00
PRODUCT_NAME=$PRODUCT_NAME \
2022-10-31 15:52:20 +01:00
PRODUCT_EDITION=$PRODUCT_EDITION \
DS_DOCKER_INSTALLATION=true
2022-05-15 18:33:57 +02:00
2022-10-11 11:52:48 +02:00
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" && \
2022-05-12 21:03:31 +02:00
apt-get -y update && \
service postgresql start && \
2022-09-16 11:28:44 +02:00
apt-get -yq install /tmp/$PACKAGE_FILE && \
2016-08-25 18:52:14 +02:00
service postgresql stop && \
2023-07-13 16:51:03 +02:00
chmod 755 /etc/init.d/supervisor && \
sed "s/COMPANY_NAME/${COMPANY_NAME}/g" -i /etc/supervisor/conf.d/*.conf && \
2016-07-28 11:39:56 +02:00
service supervisor stop && \
2019-10-21 10:51:06 +02:00
chmod 755 /app/ds/*.sh && \
2022-09-16 11:28:44 +02:00
rm -f /tmp/$PACKAGE_FILE && \
2019-10-21 10:51:06 +02:00
rm -rf /var/log/$COMPANY_NAME && \
2016-06-30 11:41:52 +02:00
rm -rf /var/lib/apt/lists/*
2015-04-17 17:25:41 +02:00
2019-12-20 11:15:59 +01:00
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
2015-04-17 17:25:41 +02:00
2020-09-10 16:02:20 +02:00
ENTRYPOINT ["/app/ds/run-document-server.sh"]