Sign inSign up

richardklose/github-release-mirror

By richardklose

•Updated over 7 years ago

A mirror for releases of GitHub projects

Image
0

1.4K

richardklose/github-release-mirror repository overview

⁠Welcome to github-release-mirror šŸ‘‹

License: MIT ⁠ Docker: richardklose/github-release-mirror ⁠ Twitter: richard_klose ⁠

Mirroring releases of GitHub projects made easy

ā šŸ  Homepage⁠ | šŸ“ Blog post⁠

Many packages download prebuilt binaries from their GitHub Release. That has some disadvantages:

  • No reproducible builds. If the project is removed from GitHub, the prebuilt binaries are gone.
  • Required internet connection. If you can't access the internet or GitHub is down, you can't download binaries from there.
  • Installation speed depends on internet connection speed. Downloading from GitHub is always slower than downloading from a server in your local network.

Especially in an enterprise environment, it's not always the best solution to depend on external servers. On the other hand, you don't want to recompile every external library on every build.

This project is a simple mirror, that downloads and keeps releases of GitHub Projects on your own server.

⁠Install

The easiest way is, to use docker, but you can also use the mirror.sh⁠ script manually. Recurring updates are run by cron, where every mirrored project has it's own cronjob, so you should overwrite this project's crontab with your own, in order to manage your mirrored projects.

  1. Create a crontab with a cronjob for each project. (E.g. mirroring node-sass and electron releases)
0 3 * * * /opt/mirror.sh sass/node-sass
0 4 * * * /opt/mirror.sh electron/electron.
  1. Create a folder, where the downloaded release can be stored permanently.
  2. Run docker:
docker run \
  -p 80:80 \
  -v /path/to/your/crontab:/etc/cron.d/mirror-cron \
  -v /path/to/your/storage/folder:/mirror
  --name github-release-mirror \
  richardklose/github-release-mirror

⁠Usage

Use it, e.g. in .npmrc for node-sass and electron:

sass_binary_site=http://<ip-of-your-server>/sass/node-sass
electron_mirror=http://<ip-of-your-server>/electron/electron/v

You can also browse the downloaded files by opening your servers IP in a browser.

⁠Author

šŸ‘¤ Richard Klose <[email protected]⁠>

ā šŸ¤ Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page⁠.

⁠Show your support

Give a ā­ļø if this project helped you!

ā šŸ“ License

Copyright Ā© 2019 Richard Klose <[email protected]>⁠.
This project is MIT⁠ licensed.

⁠Support on Beerpay

Hey dude! Help me out for a couple of :beers:!

Beerpay Beerpay

Tag summary

Content type

Image

Digest

Size

47 MB

Last updated

over 7 years ago

docker pull richardklose/github-release-mirror