From: djay Date: Thu, 3 Mar 2016 18:21:37 +0000 (+0100) Subject: Add comment about timezone definition X-Git-Tag: 2.0.0-beta.2~6^2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=b80841f23c6736aef7485aa3d8ba7cf0af861f64 Add comment about timezone definition --- diff --git a/docker-compose.yml b/docker-compose.yml index 26fba8f0..50d8c546 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,6 +15,7 @@ services: build: context: docker/php args: + # Set here your timezone using one of this: http://php.net/manual/en/timezones.php timezone: 'Europe/Monaco' ports: - "9000:9000" diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index b43d40b5..29d27c3a 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -1,5 +1,6 @@ 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 \