I have *.yml file to keycloak example and when i want see logs in console then i use:
docker logs -f keycloak
example logs:
08:41:27,304 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.6.Final
When i go into docker
docker exec -it keycloak bash
and run date then i have correct time like
[root@3741ebb1131f /]# date
Mon Nov 14 14:44:41 CET 2016
My yml file:
version: '2'
services:
    keycloak:
        image: bla_bla_bla_image
        container_name: keycloak
        volumes:
          - /etc/localtime:/etc/localtime:ro
        external_links: 
          - postgres_container:postgres
        networks:
          default:
              ipv4_address: "111.111.11.11"
networks:
    default:
        external:
            name: demo
Can someone tell me what is happen?
