]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - docker/php/Dockerfile
Re-facto EntryConsumer
[github/wallabag/wallabag.git] / docker / php / Dockerfile
index c230bc44554428255a18dad819ae94b53dd66ffb..29d27c3a80ce1a3fa933f824492d0e0f02c1e9d5 100644 (file)
@@ -1,11 +1,14 @@
 FROM php:fpm
 
+# Default timezone. To change it, use the argument in the docker-compose.yml file
+ARG timezone='Europe/Paris'
+
 RUN apt-get update && apt-get install -y \
         libmcrypt-dev libicu-dev libpq-dev libxml2-dev \
     && docker-php-ext-install \
         iconv mcrypt mbstring intl pdo pdo_mysql pdo_pgsql
 
-RUN echo "date.timezone=Europe/Paris" > /usr/local/etc/php/conf.d/date_timezone.ini
+RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini
 
 RUN usermod -u 1000 www-data