mirror of
https://github.com/zephrynis/PluginDownloader.git
synced 2026-02-18 20:11:54 +00:00
Add Dockerfile, main Python script, example config, requirements, and README for a Dockerized Minecraft plugin updater. The updater supports GitHub, Modrinth, and Spigot plugins, automatically checks for updates, downloads new versions, and manages plugin files and state.
18 lines
474 B
YAML
18 lines
474 B
YAML
check_interval: 3600 # Check every hour
|
|
|
|
plugins:
|
|
- name: "EssentialsX"
|
|
source: "github"
|
|
repo: "EssentialsX/Essentials"
|
|
# asset_regex: "EssentialsX-.*.jar" # Optional regex to match specific asset
|
|
|
|
- name: "FastAsyncWorldEdit"
|
|
source: "modrinth"
|
|
id: "fawe" # Project ID or Slug
|
|
loader: "spigot" # Optional: fabric, forge, spigot
|
|
game_version: "1.20.4" # Optional
|
|
|
|
- name: "Vault"
|
|
source: "spigot"
|
|
id: "34315" # Resource ID from URL
|