Flask App over Gitlab Api to browse projects tags and to search into repository files
pip install gitlabui
export GITLAB_URL=http://localhost/api/v4
export GITLAB_TOKEN=<YOUR_PRIVATE_TOKEN>
gunicorn -b 0.0.0.0:5000 gitlabui:app
docker run -d \
-e GITLAB_URL=http://localhost/api/v4 \
-e GITLAB_TOKEN=<YOUR_PRIVATE_TOKEN> \
-p 5000:5000 batou9150/gitlabui gunicorn -b 0.0.0.0:5000 gitlabui:app