-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
The postgres:9.6
tag shifted from 9.6.11 to 9.6.12, and shows the following TZ difference:
Old:
$ docker run -dit --rm postgres:9.6.11
3828d6ab409d60f4c25e34e9f43d0ffc8c9ca7e9a35f35d1bf6813d83f01ccff
$ docker exec -it 3828d6ab409d60f4c25e34e9f43d0ffc8c9ca7e9a35f35d1bf6813d83f01ccff psql -Upostgres
psql (9.6.11)
Type "help" for help.
postgres=# show timezone;
TimeZone
----------
UTC
(1 row)
New:
$ docker run -dit --rm postgres:9.6.12
18033871846f4997f074ea52044e4f9541b5a0389363515bdbea4e585b164078
$ docker exec -it 18033871846f4997f074ea52044e4f9541b5a0389363515bdbea4e585b164078 psql -Upostgres
psql (9.6.12)
Type "help" for help.
postgres=# show timezone;
TimeZone
----------
UCT
(1 row)