gitbeaker/docker-compose.test.yml
2018-05-14 18:41:20 -04:00

20 lines
418 B
YAML

version: '3'
services:
gitlab:
image: gitlab/gitlab-ce
container_name: gitlab
entrypoint:
- sh
- -c
- |
ls
gitlab-ctl reconfigure
gitlab-rails console
ENV['PERSONAL_ACCESS_TOKEN'] = "test"
exit
environment:
- GITLAB_URL='http://localhost:8080'
- PERSONAL_ACCESS_TOKEN='token'
ports:
- 8080:80
- 8443:443