2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-05 04:15:27 +01:00
Files
dockerfiles_vimagick/gitlab/README.md
2016-06-09 23:41:17 +08:00

59 lines
1.0 KiB
Markdown

gitlab
======
[GitLab][1] includes Git repository management, code reviews, issue tracking,
wikis, and more, plus GitLab CI, an easy-to-use continuous integration and
deployment tool.
## docker-compose.yml
```
gitlab:
image: gitlab/gitlab-ce
hostname: gitlab.example.com
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'https://gitlab.example.com'
ports:
- "22:22"
- "80:80"
- "443:443"
volumes:
- ./gitlab/config:/etc/gitlab
- ./gitlab/logs:/var/log/gitlab
- ./gitlab/data:/var/opt/gitlab
restart: always
```
## up and running
```
$ vi /etc/ssh/sshd_config
- Port 22
+ Port 2222
$ systemctl restart ssh
$ docker-compose up -d
$ firefox https://gitlab.example.com
```
## backup volumes
```
$ docker run --rm \
--volumes-from gitlab_gitlab_1 \
-v $PWD:/tmp \
alpine \
tar czf /tmp/gitlab.tgz /etc/gitlab /var/opt/gitlab /var/log/gitlab
$ tar tzf gitlab.tgz
```
## read more
- http://docs.gitlab.com/omnibus/docker/
[1]: https://gitlab.com/