Skip to content
Snippets Groups Projects
Verified Commit 256435a9 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[Dokuwiki] Try to fix tar not found error

parent 7daa8466
No related branches found
No related tags found
No related merge requests found
Pipeline #54472 failed
......@@ -21,9 +21,9 @@ RUN apt-get update -y && \
sed -i -e "s|;listen\.owner\s*=\s*|listen.owner = |g" /etc/php/7.3/fpm/pool.d/www.conf && \
sed -i -e "s|;listen\.group\s*=\s*|listen.group = |g" /etc/php/7.3/fpm/pool.d/www.conf && \
sed -i -e "s|;listen\.mode\s*=\s*|listen.mode = |g" /etc/php/7.3/fpm/pool.d/www.conf && \
wget "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" && \
tar -xzf dokuwiki-stable.tgz -C update --strip-components 1 && \
rm -f dokuwiki-stable.tgz && \
wget -O dokuwiki.tgz "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" && \
tar -xzf dokuwiki.tgz -C update --strip-components 1 && \
rm -f dokuwiki.tgz && \
chown -R www-data . && \
chmod +x /run.sh && \
sed -i "s/\${MAXSIZE}/100M/g" /etc/nginx/nginx.conf && \
......
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