Skip to content

Commit b1d70d4

Browse files
committed
Cleanup README, its years old and stale
1 parent 32b1fd4 commit b1d70d4

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ docker pull tiredofit/gitlab-ee:latest
117117
Alternatively you can build the image locally.
118118

119119
```bash
120-
docker build -t tiredofit/gitlab github.com/tiredofit/gitlab-ee
120+
docker build -t tiredofit/gitlab-ee
121121
```
122122

123123
### Quick Start
@@ -152,7 +152,7 @@ docker run --name gitlab-postgresql -d \
152152
--env 'DB_USER=gitlab' --env 'DB_PASS=password' \
153153
--env 'DB_EXTENSION=pg_trgm' \
154154
--volume /data/gitlab/postgresql:/var/lib/postgresql \
155-
tiredofit/postgresql:10-latest
155+
tiredofit/postgresql:13-latest
156156
```
157157

158158
Step 2. Launch a redis container
@@ -214,10 +214,6 @@ docker run --name gitlab -d \
214214

215215
## Database
216216

217-
GitLab uses a database backend to store its data. You can configure this image to use either MySQL or PostgreSQL.
218-
219-
*Note: GitLab HQ recommends using PostgreSQL over MySQL*
220-
221217
### PostgreSQL
222218

223219
#### External PostgreSQL Server
@@ -256,7 +252,7 @@ To illustrate linking with a postgresql container, we will use the [tiredofit/po
256252
First, lets pull the postgresql image from the docker index.
257253

258254
```bash
259-
docker pull tiredofit/postgresql:10-latest
255+
docker pull tiredofit/postgresql:13-latest
260256
```
261257

262258
For data persistence lets create a store for the postgresql and start the container.
@@ -276,7 +272,7 @@ docker run --name gitlab-postgresql -d \
276272
--env 'DB_USER=gitlab' --env 'DB_PASS=password' \
277273
--env 'DB_EXTENSION=pg_trgm' \
278274
--volume /data/gitlab/postgresql:/var/lib/postgresql \
279-
tiredofit/postgresql:10-latest
275+
tiredofit/postgresql:13-latest
280276
```
281277

282278
The above command will create a database named `gitlabhq_production` and also create a user named `gitlab` with the password `password` with access to the `gitlabhq_production` database.
@@ -1125,7 +1121,7 @@ docker run --name gitlab -d [OPTIONS] tiredofit/gitlab-ee:latest
11251121

11261122
## Shell Access
11271123

1128-
For debugging and maintenance purposes you may want access the containers shell. If you are using docker version `1.3.0` or higher you can access a running containers shell using `docker exec` command.
1124+
For debugging and maintenance purposes you may want access the containers shell.
11291125

11301126
```bash
11311127
docker exec -it gitlab bash

0 commit comments

Comments
 (0)