README: remove sudo from docker commands

This commit is contained in:
Sameer Naik 2014-03-04 14:57:42 +05:30
parent 8bc6a189ff
commit 9f8fa91500

View File

@ -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