Sign inSign up

r15ch13/excavator

By r15ch13

•Updated almost 5 years ago

Automated update service for Scoop buckets (https://scoop.sh)

Image
0

500K+

r15ch13/excavator repository overview

⁠Excavator 🕳️

This image allows for automated updates of Scoop⁠ buckets.

⁠Usage

  • Add bin\bucket-updater.ps1 to your Bucket (see: bucket-updater.ps1⁠)
  • Create docker-compose.yml on your Docker Host (see: docker-compose.yml⁠)
  • Run docker-compose up
  • Add the generated public key to your GitHub account (see: ssh volume)

⁠Environment Variables

The following Environment Variables are required for pushing changes to GitHub.

BUCKET=<user>/<repo>        # GitHub Repo (e.g. lukesampson/scoop)
GIT_USERNAME=               # For "git config user.name"
GIT_EMAIL=                  # For "git config user.email"

# Optional:
SNOWFLAKES=curl,brotli      # Programs that should always be updated (comma separated)
CRONTAB=0 * * * *           # Change cron execution times (default: every hour)
METHOD=push                 # push = pushs to $BUCKET (default) / request = pull-request to $UPSTREAM
UPSTREAM=<user>/<repo>      # Upstream GitHub Repo for Pull-Request creating
SCOOP_DEBUG=true            # Enables Scoop debug output

⁠Example bin\bucket-updater.ps1

param(
    # overwrite upstream param
    [String]$upstream = "<user>/<repo>:master"
)
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
$dir = "$psscriptroot/.." # checks the parent dir
iex -command "$autopr -dir $dir -upstream $upstream $($args |% { "$_ " })"

⁠Example docker-compose.yml

version: "3"

services:
  bucket:
    image: r15ch13/excavator:latest
    deploy:
      mode: global # creates only one container
    volumes:
      - ssh:/root/.ssh
      - logs:/root/log
    environment:
      GIT_USERNAME: "Max Muster"
      GIT_EMAIL: "[email protected]"
      BUCKET: "maxmuster/my-bucket"
volumes:
  ssh:
  logs:

⁠These Scoop buckets get automated updates

⁠Logs

Current logs can be found at https://scoop.r15.ch⁠

⁠License

The MIT License (MIT)⁠

Tag summary

Content type

Image

Digest

Size

186.8 MB

Last updated

almost 5 years ago

docker pull r15ch13/excavator