gitbeaker/scripts/docker-compose.yml
Justin Dalrymple db63076a5a
Reach > 90% coverage and add Integration Testing (#709)
- Added many many more unit tests to increase coverage to 90% +
- Removed the upsert functionality of PushRules to maintain documented API parity
2020-06-20 14:55:12 +02:00

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'