]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add comment about timezone definition 1771/head
authordjay <trash@goovy.com>
Thu, 3 Mar 2016 18:21:37 +0000 (19:21 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Wed, 9 Mar 2016 08:04:31 +0000 (09:04 +0100)
docker-compose.yml
docker/php/Dockerfile

index 26fba8f0a805a8d01d8c603f6a1c21bc6393c9b2..50d8c546e0836237b13c2ea763b187e05f380a25 100644 (file)
@@ -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"
index b43d40b51e634ed4743ba4170b399149ff0e8276..29d27c3a80ce1a3fa933f824492d0e0f02c1e9d5 100644 (file)
@@ -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 \