Just for education reasons I want to install Gitlab EE on my MacOS using Docker Desktop.
I use command:
sudo docker run --detach \
--hostname localhost \
--publish 443:443 --publish 80:80 --publish 22:22 \
--name gitlab \
--restart always \
--volume $GITLAB_HOME/config:/etc/gitlab:Z \
--volume $GITLAB_HOME/logs:/var/log/gitlab:Z \
--volume $GITLAB_HOME/data:/var/opt/gitlab:Z \
--shm-size 2gb \
--platform linux/amd64 \
gitlab/gitlab-ee:latest
I could not load a login page. What could be wrong?
I also tried to change the ports, but does not solve the issue
sudo docker run --detach \
--hostname localhost \
--publish 8443:443 --publish 8080:80 --publish 8022:22 \
--name gitlab \
--restart always \
--volume $GITLAB_HOME/config:/etc/gitlab:Z \
--volume $GITLAB_HOME/logs:/var/log/gitlab:Z \
--volume $GITLAB_HOME/data:/var/opt/gitlab:Z \
--shm-size 2gb \
--platform linux/amd64 \
gitlab/gitlab-ee:latest
I got response for
This page isn’t workinglocalhost didn’t send any data.
ERR_EMPTY_RESPONSE
macOS Monterey 12.2.1