From 16abc8687730f3ece2120d5569ca454c384f1069 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sat, 23 May 2015 11:34:48 +0530 Subject: [PATCH] readme: removed the `Putting it all together section` --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/README.md b/README.md index f9688f89..56ad297c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ - [Establishing trust with your server](#establishing-trust-with-your-server) - [Installing Trusted SSL Server Certificates](#installing-trusted-ssl-server-certificates) - [Deploy to a subdirectory (relative url root)](#deploy-to-a-subdirectory-relative-url-root) - - [Putting it all together](#putting-it-all-together) - [OmniAuth Integration](#omniauth-integration) - [Google](#google) - [Twitter](#twitter) @@ -631,29 +630,6 @@ GitLab will now be accessible at the `/git` path, e.g. `http://www.example.com/g **Note**: *The `GITLAB_RELATIVE_URL_ROOT` parameter should always begin with a slash and* **SHOULD NOT** *have any trailing slashes.* -### Putting it all together - -```bash -docker run --name=gitlab -d -h git.local.host \ - --volume=/srv/docker/gitlab/gitlab:/home/git/data \ - --volume=/srv/docker/gitlab/mysql:/var/lib/mysql \ - --env='GITLAB_HOST=git.local.host' --env='GITLAB_EMAIL=gitlab@local.host' \ - --env='SMTP_USER=USER@gmail.com' --env='SMTP_PASS=PASSWORD' \ - sameersbn/gitlab:7.11.0 -``` - -If you are using an external mysql database - -```bash -docker run --name=gitlab -d -h git.local.host \ - --volume=/srv/docker/gitlab/gitlab:/home/git/data \ - --env='DB_HOST=192.168.1.100' --env='DB_NAME=gitlabhq_production' \ - --env='DB_USER=gitlab' --env='DB_PASS=password' \ - --env='GITLAB_HOST=git.local.host' --env='GITLAB_EMAIL=gitlab@local.host' \ - --env='SMTP_USER=USER@gmail.com' --env='SMTP_PASS=PASSWORD' \ - sameersbn/gitlab:7.11.0 -``` - ### OmniAuth Integration GitLab leverages OmniAuth to allow users to sign in using Twitter, GitHub, and other popular services. Configuring OmniAuth does not prevent standard GitLab authentication or LDAP (if configured) from continuing to work. Users can choose to sign in using any of the configured mechanisms.