Skip to content
Snippets Groups Projects
Commit 8528d3fe authored by PICHOU Kyâne's avatar PICHOU Kyâne
Browse files

Fix etherpad encoding issue

parent ceb9b046
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ ENV ETHERPAD_VERSION 1.6.1
COPY add/entrypoint.sh /entrypoint.sh
#Installation de NodeJS + NPM
RUN useradd -d /opt/etherpad-lite -u 1000 etherpad && \
RUN useradd -d /opt/etherpad-lite -u 1000 etherpad && \
curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get update && \
apt-get install -y nodejs unzip mysql-client && \
......@@ -15,11 +15,11 @@ RUN useradd -d /opt/etherpad-lite -u 1000 etherpad && \
curl -SL https://github.com/ether/etherpad-lite/archive/${ETHERPAD_VERSION}.zip > etherpad.zip && \
unzip etherpad && \
rm -Rf etherpad.zip etherpad-lite-${ETHERPAD_VERSION}/.git && \
mv etherpad-lite-${ETHERPAD_VERSION} /opt/etherpad-lite && \
mv etherpad-lite-${ETHERPAD_VERSION} /opt/etherpad-lite && \
chown -R etherpad: /opt/etherpad-lite && \
chmod +x /entrypoint.sh
USER etherpad
USER etherpad
WORKDIR /opt/etherpad-lite
#First starting of services
......
......@@ -54,7 +54,8 @@ if [ ! -f settings.json ]; then
"user" : "${ETHERPAD_DB_USER}",
"host" : "${MYSQL_PORT_3306_TCP_ADDR}",
"password": "${ETHERPAD_DB_PASSWORD}",
"database": "${ETHERPAD_DB_NAME}"
"database": "${ETHERPAD_DB_NAME}",
"charset" : "utf8mb4"
},
EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment