|
|
@ -45,7 +45,18 @@ $ cp postgres/tomcat/lib/ |
|
|
|
$ cp <my-licence-file> secrets/license.xml |
|
|
|
$ docker-compose -f docker-compose-pe.yml -f docker-compose-postgres.yml up |
|
|
|
``` |
|
|
|
## Timezones |
|
|
|
|
|
|
|
Timezones can be tricky to configure using Docker (and docker-compose). |
|
|
|
|
|
|
|
A common way to copy the host timezone in your containers is to share /etc/timezone as a volume: |
|
|
|
|
|
|
|
``` |
|
|
|
volumes: |
|
|
|
- "/etc/timezone:/etc/timezone:ro" |
|
|
|
``` |
|
|
|
|
|
|
|
This requires, of course, that both your host and the containers relies on this configuration file. |
|
|
|
|
|
|
|
## TODO |
|
|
|
|
|
|
|