mirror of https://github.com/wallabag/wallabag.git
Add comment about timezone definition
This commit is contained in:
parent
612f5f1ec7
commit
b80841f23c
|
@ -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"
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue