mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
16 lines
381 B
YAML
16 lines
381 B
YAML
version: '3'
|
|
services:
|
|
gitlab:
|
|
image: 'gitlab/gitlab-ce'
|
|
container_name: 'gitlab'
|
|
environment:
|
|
PERSONAL_ACCESS_TOKEN: ''
|
|
GITLAB_OMNIBUS_CONFIG: |
|
|
gitlab_rails['monitoring_whitelist'] = ['0.0.0.0/0', '172.17.0.1'];
|
|
GITLAB_ROOT_PASSWORD: 'password'
|
|
ports:
|
|
- '8080:80'
|
|
- '8443:443'
|
|
volumes:
|
|
- './init.rb:/mnt/init.rb'
|