Skip to content

Commit

Permalink
ISSUE-25: Moved to jenkins CI (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
pozgo authored Nov 17, 2019
1 parent 93dc1fa commit e8e91aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 43 deletions.
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Przemysław Ożgo
Copyright (c) 2019 Przemysław Ożgo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GitLab in a Docker on Steroids

[![Build Status](https://travis-ci.org/pozgo/docker-gitlab-ce.svg?branch=master)](https://travis-ci.org/pozgo/docker-gitlab-ce)
[![Build Status](https://jenkins.ozgo.info/jenkins/buildStatus/icon?job=gh-pozgo-docker-gitlab)](https://jenkins.ozgo.info/jenkins/job/gh-pozgo-docker-gitlab/)
[![GitHub Open Issues](https://img.shields.io/github/issues/pozgo/docker-gitlab-ce.svg)](https://github.com/pozgo/docker-gitlab-ce/issues) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce?ref=badge_shield)

[![Stars](https://img.shields.io/github/stars/pozgo/docker-gitlab-ce.svg?style=social&label=Stars)]()
[![Fork](https://img.shields.io/github/forks/pozgo/docker-gitlab-ce.svg?style=social&label=Fork)]()
[![](https://img.shields.io/github/release/pozgo/docker-gitlab-ce.svg)](http://microbadger.com/images/polinux/gitlab-ce)
Expand All @@ -11,8 +11,8 @@
Felling like supporting me in my projects use donate button. Thank You!
[![](https://img.shields.io/badge/donate-PayPal-blue.svg)](https://www.paypal.me/POzgo)

[Docker Image](https://registry.hub.docker.com/u/polinux/gitlab-ce/) with GitLab Server.
It's build the same way offcial images but with this image we added missing options into the docker image and will keep adding more features when requested by users.
[Docker Image](https://registry.hub.docker.com/u/polinux/gitlab-ce/) with GitLab Server.
It's build the same way offcial images but with this image we added missing options into the docker image and will keep adding more features when requested by users.

Options added so far:
- Backup Time (crontab based)
Expand Down Expand Up @@ -45,7 +45,7 @@ docker run \
polinux/gitlab-ce
```

Set backup time to 15:00
Set backup time to 15:00
```bash
docker run \
-d \
Expand Down Expand Up @@ -107,4 +107,4 @@ Przemyslaw Ozgo (<[email protected]>)
I would like to thank [JetBrains](https://www.jetbrains.com/) for supporting me with Open Source endeavours.

## License
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpozgo%2Fdocker-gitlab-ce?ref=badge_large)
4 changes: 2 additions & 2 deletions container-files/assets/download-package
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

if [[ ${DOWNLOAD_URL} == *"amazonaws"* ]]; then
echo "Downloading package from Amazon bucket - ${DOWNLOAD_URL}"
wget --quiet ${DOWNLOAD_URL} -O /tmp/gitlab.deb
wget ${DOWNLOAD_URL} -O /tmp/gitlab.deb
else
echo "Downloading package as artifact - ${DOWNLOAD_URL}"
# If we are fetching the package which is available as an artifact, we need
# to authenticate to access it. Hence, we pass PRIVATE-TOKEN header.
wget --quiet --header "PRIVATE-TOKEN: ${TRIGGER_PRIVATE_TOKEN}" ${DOWNLOAD_URL} -O /tmp/gitlab.deb
wget --header "PRIVATE-TOKEN: ${TRIGGER_PRIVATE_TOKEN}" ${DOWNLOAD_URL} -O /tmp/gitlab.deb
fi

0 comments on commit e8e91aa

Please sign in to comment.