https://docs.gitlab.com/ee/install/docker.html

export GITLAB_HOME=/srv/gitlab
sudo docker run --detach \
  --hostname gitlab_tunnel.trk.in.rs \
  --publish 443:443 --publish 80:80 --publish 22:22 \
  --name gitlab \
  --restart always \
  --volume $GITLAB_HOME/config:/etc/gitlab \
  --volume $GITLAB_HOME/logs:/var/log/gitlab \
  --volume $GITLAB_HOME/data:/var/opt/gitlab \
  --shm-size 256m \
  gitlab/gitlab-ee:latest