Skip to content
Snippets Groups Projects
Commit 4532b3fb authored by Igor Witz's avatar Igor Witz
Browse files

l'image peut être construite et semble fonctionner

parent 0c458775
No related branches found
No related tags found
1 merge request!22Ajout de la CI pour Etherpad et Dokuwiki
Pipeline #31203 failed
FROM nginx FROM nginx
LABEL maintainer="antoine@barbare.me" LABEL maintainer="antoine@barbare.me"
COPY nginx.conf /etc/nginx/nginx.conf
WORKDIR /var/www WORKDIR /var/www
RUN apt-get update -y && \ RUN apt-get update -y && \
apt-get install -y \ apt-get install -y \
curl \ wget \
tar \ tar \
php7.0 \ php7.0 \
php7.0-fpm \ php7.0-fpm \
php7.0-gd \ php7.0-gd \
php7.0-xml \ php7.0-xml && \
libidn2-0 && \ mkdir -p html /var/run/php && \
mkdir -p html && \
echo "cgi.fix_pathinfo = 0;" >> /etc/php/7.0/fpm/php.ini && \ echo "cgi.fix_pathinfo = 0;" >> /etc/php/7.0/fpm/php.ini && \
sed -i -e "s|;daemonize\s*=\s*yes|daemonize = no|g" /etc/php/7.0/fpm/php-fpm.conf && \ sed -i -e "s|;daemonize\s*=\s*yes|daemonize = no|g" /etc/php/7.0/fpm/php-fpm.conf && \
sed -i -e "s|listen\s*=\s*127\.0\.0\.1:9000|listen = /var/run/php-fpm7.sock|g" /etc/php/7.0/fpm/pool.d/www.conf && \ sed -i -e "s|listen\s*=\s*127\.0\.0\.1:9000|listen = /var/run/php-fpm7.sock|g" /etc/php/7.0/fpm/pool.d/www.conf && \
sed -i -e "s|;listen\.owner\s*=\s*|listen.owner = |g" /etc/php/7.0/fpm/pool.d/www.conf && \ sed -i -e "s|;listen\.owner\s*=\s*|listen.owner = |g" /etc/php/7.0/fpm/pool.d/www.conf && \
sed -i -e "s|;listen\.group\s*=\s*|listen.group = |g" /etc/php/7.0/fpm/pool.d/www.conf && \ sed -i -e "s|;listen\.group\s*=\s*|listen.group = |g" /etc/php/7.0/fpm/pool.d/www.conf && \
sed -i -e "s|;listen\.mode\s*=\s*|listen.mode = |g" /etc/php/7.0/fpm/pool.d/www.conf && \ sed -i -e "s|;listen\.mode\s*=\s*|listen.mode = |g" /etc/php/7.0/fpm/pool.d/www.conf && \
curl -O -L "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" && \ wget "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" && \
tar -xzf dokuwiki-stable.tgz -C html --strip-components 1 && \ tar -xzf dokuwiki-stable.tgz -C html --strip-components 1 && \
rm -f dokuwiki-stable.tgz && \ rm -f dokuwiki-stable.tgz && \
chown -R nginx:nginx html && \ chown -R www-data . /etc/nginx/nginx.conf && \
apt-get remove curl -y && \ sed -i "s/\${MAXSIZE}/100M/g" /etc/nginx/nginx.conf && \
apt-get -y autoclean && \ ln -sf /dev/stdout /var/log/nginx/access.log && \
apt-get -y clean && \ ln -sf /dev/stderr /var/log/nginx/error.log && \
apt-get -y autoremove ln -sf /dev/stderr /var/log/php-fpm.log
USER nginx
EXPOSE 80 EXPOSE 80
VOLUME ["/var/www/html"] VOLUME ["/var/www/html"]
HEALTHCHECK CMD wget -q -O /dev/null http://127.0.0.1:${DOKUWIKI_PORT:=80}/ HEALTHCHECK CMD wget -q -O /dev/null http://127.0.0.1:${DOKUWIKI_PORT:=80}/
COPY nginx.conf /etc/nginx/nginx.conf COPY run.sh /
COPY entrypoint.sh /
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]
COPY run.sh /run.sh
CMD ["run.sh"]
\ No newline at end of file
...@@ -5,15 +5,13 @@ services: ...@@ -5,15 +5,13 @@ services:
image: pica-dokuwiki:2018.05 image: pica-dokuwiki:2018.05
volumes: volumes:
- /DATA/docker/wiki/html:/var/www/html - /DATA/docker/wiki/html:/var/www/html
environment:
- MAX_UPLOAD_SIZE=100M
security_opt: security_opt:
- no-new-privileges - no-new-privileges
mem_limit: 2048m mem_limit: 2048m
cpus: "0.20" cpus: "0.20"
pids_limit: 1024 pids_limit: 1024
labels: labels:
- "traefik.frontend.rule=Host:wiki.picasoft.net" - "traefik.frontend.rule=Host:wiki.test.picasoft.net"
- "traefik.port=80" - "traefik.port=80"
- "traefik.enable=true" - "traefik.enable=true"
restart: always restart: always
......
#!/bin/bash #!/bin/bash
MAX_UPLOAD_SIZE=${MAX_UPLOAD_SIZE:-10M} set -e
sed -i "s/\${MAXSIZE}/$MAX_UPLOAD_SIZE/g" /etc/nginx/nginx.conf chmod +x /run.sh
\ No newline at end of file /run.sh
...@@ -3,7 +3,7 @@ daemon off; ...@@ -3,7 +3,7 @@ daemon off;
user www-data; user www-data;
worker_processes 1; worker_processes 1;
error_log stderr error; error_log stderr error;
events { events {
worker_connections 1024; worker_connections 1024;
...@@ -14,13 +14,9 @@ http { ...@@ -14,13 +14,9 @@ http {
default_type application/octet-stream; default_type application/octet-stream;
sendfile on; sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65; keepalive_timeout 65;
#gzip on;
server { server {
listen 80; listen 80;
...@@ -35,14 +31,7 @@ http { ...@@ -35,14 +31,7 @@ http {
try_files $uri $uri/ @dokuwiki; try_files $uri $uri/ @dokuwiki;
} }
#location @dokuwiki { location ~ \.php$ {
# rewrite ^/_media/(.*) /lib/exe/fetch.php?media=$1 last;
# rewrite ^/_detail/(.*) /lib/exe/detail.php?media=$1 last;
# rewrite ^/_export/([^/]+)/(.*) /doku.php?do=export_$1&id=$2 last;
# rewrite ^/(.*) /doku.php?id=$1 last;
#}
location ~ \.php$ {
try_files $uri =404; try_files $uri =404;
fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php; fastcgi_index index.php;
...@@ -62,4 +51,4 @@ http { ...@@ -62,4 +51,4 @@ http {
deny all; deny all;
} }
} }
} }
\ No newline at end of file
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
set -m set -m
php7.0-fpm & php-fpm7.0 &
nginx -g "daemon off;" & nginx
pids=`jobs -p` pids=`jobs -p`
...@@ -29,4 +29,4 @@ function terminate() { ...@@ -29,4 +29,4 @@ function terminate() {
trap terminate CHLD trap terminate CHLD
wait wait
exit $exitcode exit $exitcode
\ No newline at end of file
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