Add comment about timezone definition

This commit is contained in:
djay 2016-03-03 19:21:37 +01:00 committed by Jeremy Benoist
parent 612f5f1ec7
commit b80841f23c
2 changed files with 2 additions and 0 deletions

View 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"

View 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 \