mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
- Added many many more unit tests to increase coverage to 90% + - Removed the upsert functionality of PushRules to maintain documented API parity
16 lines
388 B
YAML
16 lines
388 B
YAML
version: '3'
|
|
services:
|
|
gitlab:
|
|
image: 'gitlab/gitlab-ce:latest'
|
|
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'
|