mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
README: remove sudo from docker commands
This commit is contained in:
parent
8bc6a189ff
commit
9f8fa91500
@ -90,15 +90,15 @@ Alternately you can build the image yourself.
|
||||
```bash
|
||||
git clone https://github.com/sameersbn/docker-gitlab.git
|
||||
cd docker-gitlab
|
||||
sudo docker build -t="$USER/gitlab" .
|
||||
docker build -t="$USER/gitlab" .
|
||||
```
|
||||
|
||||
# Quick Start
|
||||
Run the gitlab image
|
||||
|
||||
```bash
|
||||
GITLAB=$(sudo docker run -d sameersbn/gitlab)
|
||||
GITLAB_IP=$(sudo docker inspect $GITLAB | grep IPAddres | awk -F'"' '{print $4}')
|
||||
GITLAB=$(docker run -d sameersbn/gitlab)
|
||||
GITLAB_IP=$(docker inspect $GITLAB | grep IPAddres | awk -F'"' '{print $4}')
|
||||
```
|
||||
|
||||
Access the GitLab application
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user