{"id":13446760,"url":"https://github.com/ScoopInstaller/Excavator","last_synced_at":"2025-03-21T16:32:47.497Z","repository":{"id":69929846,"uuid":"94112547","full_name":"ScoopInstaller/Excavator","owner":"ScoopInstaller","description":"🕳️ This container runs the updating services for all scoop manifest repos (deprecated)","archived":true,"fork":false,"pushed_at":"2022-02-14T18:49:31.000Z","size":32,"stargazers_count":25,"open_issues_count":0,"forks_count":6,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-18T02:24:13.382Z","etag":null,"topics":["bucket","docker","powershell","scoop","scoop-helper"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ScoopInstaller.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"patreon":null,"open_collective":"ScoopInstaller","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=DM2SUH9EUXSKJ"}},"created_at":"2017-06-12T15:36:40.000Z","updated_at":"2024-10-13T00:52:28.000Z","dependencies_parsed_at":"2023-03-22T05:18:05.073Z","dependency_job_id":null,"html_url":"https://github.com/ScoopInstaller/Excavator","commit_stats":{"total_commits":56,"total_committers":5,"mean_commits":11.2,"dds":0.0892857142857143,"last_synced_commit":"2ecc57c329a780ecae5ee5ebff047836c596ed9f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScoopInstaller%2FExcavator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScoopInstaller%2FExcavator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScoopInstaller%2FExcavator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScoopInstaller%2FExcavator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ScoopInstaller","download_url":"https://codeload.github.com/ScoopInstaller/Excavator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244440314,"owners_count":20452985,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bucket","docker","powershell","scoop","scoop-helper"],"created_at":"2024-07-31T05:00:59.043Z","updated_at":"2025-03-21T16:32:47.466Z","avatar_url":"https://github.com/ScoopInstaller.png","language":"Dockerfile","funding_links":["https://opencollective.com/ScoopInstaller","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=DM2SUH9EUXSKJ"],"categories":["Dockerfile"],"sub_categories":[],"readme":"# Excavator 🕳️\n[![](https://images.microbadger.com/badges/image/r15ch13/excavator.svg)](https://microbadger.com/images/r15ch13/excavator) [![](https://images.microbadger.com/badges/version/r15ch13/excavator.svg)](https://microbadger.com/images/r15ch13/excavator)\n\nThis image allows for automated updates of [Scoop](https://scoop.sh) buckets.\n\n**Note:** This image is no longer necessary - automated updates are handled by GitHub Actions now. Read https://github.com/ScoopInstaller/Scoop/wiki/Buckets#using-template for more information.\n\n## Usage\n- Add `bin\\bucket-updater.ps1` to your Bucket (see: [bucket-updater.ps1](#example-binbucket-updaterps1))\n- Create `docker-compose.yml` on your Docker Host (see: [docker-compose.yml](#example-docker-composeyml))\n- Run `docker-compose up`\n- Add the generated public key to your GitHub account (see: ssh volume)\n\n## Environment Variables\nThe following Environment Variables are required for pushing changes to GitHub.\n```\nBUCKET=\u003cuser\u003e/\u003crepo\u003e        # GitHub Repo (e.g. ScoopInstaller/Extras)\nGIT_USERNAME=               # For \"git config user.name\"\nGIT_EMAIL=                  # For \"git config user.email\"\n\n# Optional:\nSNOWFLAKES=curl,brotli      # Programs that should always be updated (comma separated)\nCRONTAB=0 * * * *           # Change cron execution times (default: every hour)\nMETHOD=push                 # push = pushs to $BUCKET (default) / request = pull-request to $UPSTREAM\nUPSTREAM=\u003cuser\u003e/\u003crepo\u003e      # Upstream GitHub Repo for Pull-Request creating\nSCOOP_DEBUG=true            # Enables Scoop debug output\n```\n## Example `bin\\bucket-updater.ps1`\n```powershell\nparam(\n    # overwrite upstream param\n    [String]$upstream = \"\u003cuser\u003e/\u003crepo\u003e:master\"\n)\nif(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }\n$autopr = \"$env:SCOOP_HOME/bin/auto-pr.ps1\"\n$dir = \"$psscriptroot/..\" # checks the parent dir\niex -command \"$autopr -dir $dir -upstream $upstream $($args |% { \"$_ \" })\"\n```\n\n## Example `docker-compose.yml`\n```yaml\nversion: \"3\"\n\nservices:\n  bucket:\n    image: r15ch13/excavator:latest\n    deploy:\n      mode: global # creates only one container\n    volumes:\n      - ssh:/root/.ssh\n      - logs:/root/log\n    environment:\n      GIT_USERNAME: \"Max Muster\"\n      GIT_EMAIL: \"max-muster@gmail.com\"\n      BUCKET: \"maxmuster/my-bucket\"\nvolumes:\n  ssh:\n  logs:\n```\n\n## These Scoop buckets get automated updates\n- [PHP Bucket](https://github.com/ScoopInstaller/PHP)\n- [Java Bucket](https://github.com/ScoopInstaller/Java)\n- [Games Bucket](https://github.com/Calinou/scoop-games) by [@Calinou](https://github.com/Calinou)\n\n## Logs\nCurrent logs can be found at [https://scoop.r15.ch](https://scoop.r15.ch/?sort=time\u0026order=desc)\n\n# License\n[The MIT License (MIT)](https://r15ch13.mit-license.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FScoopInstaller%2FExcavator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FScoopInstaller%2FExcavator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FScoopInstaller%2FExcavator/lists"}