[0.8][Resolved] No response from drone.server

Hello I have problem with drone-server:8.1.
No response when trying to access server web ui.
Here is my docker-compose:

version: '2'

services:
  drone-server:
    image: drone/drone:0.8
    ports:
      - 443:8000
      - 9000:9000
    volumes:
      - ./database:/var/lib/drone/
      - ./cert:/cert/
    restart: always
    environment:
      - DRONE_OPEN=true
      - DRONE_HOST=https://<hidden>
      - DRONE_ADMIN=<hidden>
      - DRONE_GITLAB=true
      - DRONE_GITLAB_CLIENT=<hidden>
      - DRONE_GITLAB_SECRET=<hidden>
      - DRONE_GITLAB_URL=https://<some_ip>
      - DRONE_GITLAB_SKIP_VERIFY=true
      - DRONE_SECRET=<hidden>
      - DRONE_SERVER_CERT=/cert/ia.crt
      - DRONE_SERVER_KEY=/cert/ia.key
      - DRONE_VOLUME=./cert/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt

I can see some logs when I trying to access :9000 but no response with :8000 (connection refused no logs in server even with debug)
If change drone:0.8 to drone:0.7 then no problem. I can open page.

If I forward port 443:443 it immediately redirect me to Gitlab authorization page with some error about incorrect redirect url.
Can someone support me?

Found this: http://docs.drone.io/configure-ssl/
Will try

Tried with Github problem possibly from my side