Docker installation - Unable to change the password

I’m running the Gitlab Server with the latest Docker image.
The problem is that when I try to change the password on the first step after Docker starts I’m not able to pass it. The following message appears:

8 errors prohibited this user from being saved:
Email can’t be blank
Password can’t be blank
Namespace route can’t be blank
Namespace name can’t be blank
Name can’t be blank
Notification email can’t be blank
Username can’t be blank
Username can contain only letters, digits, ‘_’, ‘-’ and ‘.’. Cannot start with ‘-’ or end in ‘.’, ‘.git’ or ‘.atom’.

A screenshot of the issue:

My Compose YML file is:

web:
  image: 'gitlab/gitlab-ee:latest'
  restart: always
  hostname: '102.125.10.28'
  environment:
    GITLAB_OMNIBUS_CONFIG: |
      external_url 'http://102.125.10.28:8082'
      gitlab_rails['gitlab_shell_ssh_port'] = 2282
  ports:
    - '8082:8082'
    - '2282:22'
  volumes:
    - '$GITLAB_HOME/config:/etc/gitlab'
    - '$GITLAB_HOME/logs:/var/log/gitlab'
    - '$GITLAB_HOME/data:/var/opt/gitlab'