Girish Ramakrishnan před 7 roky
rodič
revize
4195c6fafe
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      Dockerfile

+ 3 - 1
Dockerfile

@@ -8,7 +8,7 @@ RUN apt-get update && \
 
 RUN mkdir -p /app/code
 WORKDIR /app/code
-RUN curl -L http://wordpress.org/wordpress-4.8.3.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L http://wordpress.org/wordpress-4.9.tar.gz | tar -xz --strip-components 1 -f -
 RUN mv /app/code/wp-content /app/code/wp-content-vanilla && ln -s /app/data/wp-content /app/code/wp-content
 RUN ln -s /app/data/htaccess /app/code/.htaccess
 ADD wp-config.php.template /app/code/wp-config.php.template
@@ -23,7 +23,9 @@ RUN /bin/echo -e "apache_modules:\n  - mod_rewrite" > /app/code/wp-cli.yml
 
 # Get the plugins
 RUN curl -L -o /app/code/authLdap.zip https://github.com/heiglandreas/authLdap/archive/1.5.1.zip
+# https://plugins.svn.wordpress.org/disable-wordpress-core-update/
 RUN curl -L -o /app/code/disable-wordpress-core-update.zip https://downloads.wordpress.org/plugin/disable-wordpress-core-update.zip
+# https://plugins.svn.wordpress.org/wp-mail-smtp/
 RUN curl -L -o /app/code/wp-mail-smtp.zip https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.1.zip
 
 RUN chown -R www-data:www-data /app/code