Compare commits

..

42 Commits

Author SHA1 Message Date
79eed22a50 Small change 2025-06-09 02:29:21 -03:00
85862c488d Add syncyomi 2025-06-09 02:28:42 -03:00
ffa4a9fcbc Update extension repos 2025-06-09 01:57:53 -03:00
6a991f296a Yeah 2025-06-09 01:28:30 -03:00
79da02b8d5 Add suwayomi server 2025-06-09 01:12:11 -03:00
8061be84af Add komga 2025-06-09 00:58:40 -03:00
625c619eb7 Update minecraft config 2025-05-27 17:36:53 -03:00
0a53ca1982 Test 2025-04-24 20:24:00 -03:00
4ae4d203a9 Test 2025-04-24 20:22:40 -03:00
3c3cc90e28 Test 2025-04-24 20:21:17 -03:00
a87ac18181 dadas 2025-04-24 20:19:42 -03:00
e5bbf2d74a rearragen 2025-04-24 20:16:42 -03:00
91326070f3 Rework networking a bit 2025-04-24 20:08:19 -03:00
5791fc9b83 Rework networking a bit 2025-04-24 20:08:17 -03:00
39f5965781 change to not host 2025-04-24 18:47:47 -03:00
efd31a2fb2 Remove gpu 2025-04-24 18:36:39 -03:00
330bf9a638 Add ollama and open webui 2025-04-24 17:52:21 -03:00
970df3b1bc Add env example for navidrome 2025-04-24 14:41:10 -03:00
7a7a03c677 Add navidrome 2025-04-24 14:32:50 -03:00
227051be01 Update minecraft pack 2025-03-16 16:28:16 -03:00
c7a4e381c5 Use opensshd 2025-03-11 16:50:07 -03:00
7f50bdee1f do env variables correctly 2025-03-11 15:52:35 -03:00
837c9a04fb env 2025-03-11 15:37:36 -03:00
022185f6b9 env 2025-03-11 15:34:29 -03:00
46a80692da Start ssh server 2025-03-11 15:23:45 -03:00
b686d6723e Update pack 2025-01-26 19:06:13 -04:00
9ba44c96d0 Add headfix 2025-01-26 19:04:51 -04:00
7093ffe7dd Add fastback 2025-01-26 19:01:42 -04:00
8812a44af0 1 build, as builds that rely on common packages building at the same time can cause issues 2025-01-26 16:15:49 -04:00
14ab9137f4 Remove x backusp, causing errors 2025-01-24 23:52:39 -04:00
5fc16e4e35 Update pack 2025-01-24 23:47:15 -04:00
2a13fc8d40 Switch back 2025-01-22 20:46:47 -04:00
49b0dc5c29 Change to use host mode builds 2025-01-22 20:25:10 -04:00
438c6ae035 Update pack 2025-01-21 23:17:10 -04:00
84935c1031 Add contianer url 2025-01-07 19:28:58 -04:00
2d3f1323d2 todo samba 2025-01-07 19:21:20 -04:00
6f2ffae4f4 test 2025-01-07 19:00:11 -04:00
a918592c72 test 2025-01-07 18:58:37 -04:00
3523b12af0 remove version 2025-01-07 18:56:17 -04:00
3f6b076416 Add nfs 2025-01-07 18:55:21 -04:00
68906c249a Renormalize 2025-01-07 16:09:00 -04:00
a4d40df5cd Add aurcache 2025-01-07 16:06:40 -04:00
55 changed files with 436 additions and 220 deletions

View File

@ -0,0 +1,14 @@
services:
aurcache:
image: ghcr.io/lukas-heiligenbrunner/aurcache:latest
container_name: aurcache
restart: unless-stopped
ports:
- "8086:8080" # Frontend
- "8087:8081" # Repository
volumes:
- /docker/appdata/aurcache/db:/app/db
- /docker/appdata/aurcache/repo:/app/repo
environment:
- MAX_CONCURRENT_BUILDS=1
privileged: true

View File

@ -10,8 +10,4 @@ services:
# Environment variables: https://github.com/dockovpn/dockovpn#environment-variables
volumes:
- /docker/appdata/dockovpn/config:/opt/Dockovpn_data
restart: always
networks:
default:
name: "ubuntu-server"
external: true
restart: always

View File

@ -3,6 +3,11 @@ services:
image: gitea/gitea:latest
container_name: gitea
restart: unless-stopped
environment:
- GITEA__server__DISABLE_SSH=false
- GITEA__server__START_SSH_SERVER=false
- GITEA__server__BUILTIN_SSH_SERVER_USER=git
- GITEA__server__SSH_DOMAIN=git.shoebottom.ca
volumes:
- /docker/appdata/gitea/data:/data
- /etc/timezone:/etc/timezone:ro

View File

@ -1,5 +1,3 @@
version: "3"
services:
gotify:
container_name: gotify
@ -9,8 +7,4 @@ services:
ports:
- 8085:80
volumes:
- "/docker/appdata/gotify/data:/app/data"
networks:
default:
name: "ubuntu-server"
external: true
- "/docker/appdata/gotify/data:/app/data"

25
komga/docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
services:
komga:
image: gotson/komga
container_name: komga
volumes:
- type: bind
source: /docker/appdata/komga/config
target: /config
- type: bind
source: /docker/appdata/komga/data
target: /data
- type: bind
source: /home/isaac/Media
target: /media
- type: bind
source: /etc/timezone #alternatively you can use a TZ environment variable, like TZ=Europe/London
target: /etc/timezone
read_only: true
ports:
- 25600:25600
user: "1000:1000"
# remove the whole environment section if you don't need it
environment:
- JAVA_TOOL_OPTIONS=-Xmx4g
restart: unless-stopped

View File

@ -7,6 +7,7 @@ services:
- "25565:25565/tcp" # minecraft
- "25565:25565/udp" # plasmo-voice
- "25566:8123" # dynmap
- "25567:8100" # bluemap
environment:
EULA: "TRUE"
TYPE: "FABRIC"

View File

@ -10,7 +10,7 @@ hash = "480a2a8a40f9e3f2a1f016e0c77ba74d057ed70e574e74f233fabd3bec1d6ae8"
[[files]]
file = "mods/alternate-current.pw.toml"
hash = "d096d46cd17123c2e28271cc98a791d6a452a2d2b59acdfe53c18127a7b6604e"
hash = "221c3fe02674f1208273f0a1a376ae3a0090dacd9093a95e79988e5a4a495d2d"
metafile = true
[[files]]
@ -20,17 +20,22 @@ metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
hash = "126a1b72c154478d7d18d733fcc5e79bae93df7e37ee3f0b6e00db1b1ea66ac5"
hash = "848c49f2ead5e1e71d7be95d2d9e1cb992631faf91500b9c59e72d61afca33fd"
metafile = true
[[files]]
file = "mods/balm.pw.toml"
hash = "beeae7c448dd878ca151af7ef50df1c2a88cb39522aaadcf76c0a5615b29b038"
hash = "570daa00ea71077b1cffb1b1767c9529a85679e7e2abe25be74183f14a01e106"
metafile = true
[[files]]
file = "mods/bluemap.pw.toml"
hash = "0fab2a26e6692d71537da9565dd87137504ddb34653136fd9f7a7df084d47575"
metafile = true
[[files]]
file = "mods/c2me-fabric.pw.toml"
hash = "0d04dc4021e5ab51e11b36dce7ce46cbe02111529c3fcd3b7ef3f86b1227e6a1"
hash = "62e99d55c3f95e732fbbb23572c70bd030a6c89f90844b8a74d1e527c0183696"
metafile = true
[[files]]
@ -40,42 +45,52 @@ metafile = true
[[files]]
file = "mods/collective.pw.toml"
hash = "49349d6789c8d49c469d98f0796b260df8f9534625fddd60c37a0bd197dce225"
hash = "c650281609691743f9171291b526e0cae14b5019c0836b4bb60371fc1026e45d"
metafile = true
[[files]]
file = "mods/compact-help-command.pw.toml"
hash = "96fb87e87ce84bef8d4d50e90082b4ebfc7a3fe06c21bdca70bed2a874af3fa3"
hash = "00ed2ab413011b0449a51fc1bafe171d8e744032f31846e643cd05c90bd66ba4"
metafile = true
[[files]]
file = "mods/craterlib.pw.toml"
hash = "8d6953e79ed890486dfd960ebf8ede73dd9f25ed1b7300a611829ac725a9827a"
hash = "00f8427a33274c14e17ecf8c1be698226b316d36c0090a92e89db8a072aab34b"
metafile = true
[[files]]
file = "mods/debugify.pw.toml"
hash = "3e9322e16b6bb4db8237bfbd8e648d514dc17a9e130550c21c39f3e895ce24e9"
hash = "f605331d864b266407b9d4486a4355febbc80b5e2e6ef75e4d92d45d2b29bc8f"
metafile = true
[[files]]
file = "mods/dismount-entity.pw.toml"
hash = "e97791f25afac36880e8991737d8a8cffff8a587ee984a2b9463c1b660b148b0"
hash = "d2814f63ee56b489d26da3f53f556a01a57af4c65b0cfdb96ac1a419b5e97381"
metafile = true
[[files]]
file = "mods/distanthorizons.pw.toml"
hash = "2ad8cd5745efd0bd0f7f32f060bec092a7b2ef8ac3c6163033193a8277012e43"
metafile = true
[[files]]
file = "mods/double-doors.pw.toml"
hash = "d28a47cda29c0cf273387c254b4236f0ad65f35c9c90646e79b9faee158d5af6"
hash = "2a3a37599c32e67d15c1589af4492a79bf7544fe72380c6c908868671d53d955"
metafile = true
[[files]]
file = "mods/fabric-api.pw.toml"
hash = "40aa9a34a6ae8d39fb3e8fb8d7ae2edfd17fee124300a1ea26c65f06cff89de9"
hash = "687d9f69912b725a879bf3b4da8fb3f63eead93e4ce3e719c2be67d56b70c0b5"
metafile = true
[[files]]
file = "mods/fabric-language-kotlin.pw.toml"
hash = "3d0bf4d56ea941f856200934fdc2fb4952fe513d469f47bdb5fc586f99f16097"
hash = "967a780be97bec40b8bca4945a053ee4fbd05d58e218c4fb803959ac0d0c7f08"
metafile = true
[[files]]
file = "mods/fastback.pw.toml"
hash = "c188bba50d7c83f489e78d767eb049fb57b452b2fe291562e9b6ae98029e034e"
metafile = true
[[files]]
@ -85,7 +100,7 @@ metafile = true
[[files]]
file = "mods/followers-teleport-too.pw.toml"
hash = "c2e3a784ac7202941c4f3adfa500133f91f844417e56683ba7dd1a0b150b6a77"
hash = "7edce835239902de052754cc086998e886c131733d164aecfe10adf56e00de90"
metafile = true
[[files]]
@ -93,29 +108,34 @@ file = "mods/forge-config-api-port.pw.toml"
hash = "4b257578b2973f4e99ae3192989f7ba4db19e9eca99ea396a1479c8a6cd9ca88"
metafile = true
[[files]]
file = "mods/headfix.pw.toml"
hash = "99ad0db5e9f8baf2579c2de39f961de3b8df42704d1f38882c71255f686949fa"
metafile = true
[[files]]
file = "mods/helpfulcommands.pw.toml"
hash = "1c204e809e83415bab0f033cecd93d30c9d6eee34511a1d404ad7152ffb58ed0"
hash = "3743197cb95b4b2ad49009f9faba429c97c31e24099d8f8e6e98289f446ac9e7"
metafile = true
[[files]]
file = "mods/inventory-essentials.pw.toml"
hash = "865ca510dc0f6359ea12f03f63dcd3d3d9cba97da4a61ab8ae23b82d305d5280"
hash = "2649e89612a4b35caa9260a3bc9c04396019803d1d646a0572ecb182d271ba5d"
metafile = true
[[files]]
file = "mods/jade.pw.toml"
hash = "127d7a682272ce34d92d7df93b7e495b744a967d894e52d1c59227e96319a95b"
hash = "114968e70a3e2c2f7a33db6ed305256585353361a28210a0b872df52fc5542aa"
metafile = true
[[files]]
file = "mods/jamlib.pw.toml"
hash = "b1a2966fb0a1a546ea5d626af4b8067e31ece008f03af961a0a795d243d9f783"
hash = "19e220936d00bbbebf00b053af5463fe9ed227624d213aefb00ebbe2bf9b4cbc"
metafile = true
[[files]]
file = "mods/journeymap.pw.toml"
hash = "14788751524facc1472b4eb7a56144dc37b92d163c06de4b6e9e57fe9d0a60c9"
hash = "8388d9c06f3a34b4a15a87b8599e5388351b1c1365b1259d37da9e463fc358de"
metafile = true
[[files]]
@ -125,27 +145,27 @@ metafile = true
[[files]]
file = "mods/ksyxis.pw.toml"
hash = "3dd9d3933a5a332de135d0ecf252d367844ea71e895fc63648fc7339b95feeb3"
hash = "7c6239fe970cd45a1f680493b9fceef6870afcfd2de72086bfef3f765bd3c4c6"
metafile = true
[[files]]
file = "mods/leaves-us-in-peace.pw.toml"
hash = "85dd955a1944a73d864058a50375f25f9e4b752a96a666f8006d1277fd02bdd2"
hash = "c7a00a14e692f818cbc6a00194c4aff96f2d43de87a0bc64c91082538919af7d"
metafile = true
[[files]]
file = "mods/lithium.pw.toml"
hash = "b8284c53c59f71991c522d190b4bedb7703a86ba27b900c335f1602aecb1510b"
hash = "df9d69dc784ef61e99064407952d34c294f62fe1155b5260f825bd9a82e2f3a2"
metafile = true
[[files]]
file = "mods/modernfix.pw.toml"
hash = "348bd2931980c466e83f985747904f271c82ef7e23a4e33bbe9b882b0e7e5c94"
hash = "a874985359eaa4317b3242136fe65b86207a6d5ab55e0b4aa8f37b90727f0487"
metafile = true
[[files]]
file = "mods/netherportalfix.pw.toml"
hash = "fe4932250c57efe40d08a4a26d6159b802eb7cc13e242432e99362fe3aa3563d"
hash = "ace9ce441fc72217675c9192315d9126e200341491f65058cf461f7e5a49a3e6"
metafile = true
[[files]]
@ -160,12 +180,12 @@ metafile = true
[[files]]
file = "mods/ping-wheel.pw.toml"
hash = "8801b779ee16367851cdc838370dfec7c73d2fb180e4d939bea6dac61d752060"
hash = "513c7ff91d371f64659ac95e1ef49385713c956f44c7362c529e4308508650fe"
metafile = true
[[files]]
file = "mods/plasmo-voice.pw.toml"
hash = "3dc5c2ae7db409f60bbec59830ba7d2108cdbdd1c6be7e4fa5278220213de558"
hash = "12f091cf6022c2994952e640b837a28e41c17fabf6db91b7be724bd213e56548"
metafile = true
[[files]]
@ -175,17 +195,17 @@ metafile = true
[[files]]
file = "mods/rei.pw.toml"
hash = "97f250ee1fd7c57a193498c427dd6bbac567785b5c4713001966335ae07b7a5e"
hash = "ce44d54d098958bdeb06157e695f61b468c5675e8e189936f27a4a911fb1f6c4"
metafile = true
[[files]]
file = "mods/rightclickharvest.pw.toml"
hash = "2025b7d7cfe07efbfbe2acba3e8d0391abc20a7601c56b1e626a5be25f407430"
hash = "645622d16ed124e89e859ff3bf3df11503375d09d0970c3aa38d03bf2bdb3fdd"
metafile = true
[[files]]
file = "mods/sdlink.pw.toml"
hash = "c3f567f9982b0a9386a87aba4e80556421f3af4d2f06ec240374fa6af0e28d77"
hash = "73f53293eb435e2184a8139a3af53afbf6c327f67d6be51c9cb28f1c89b6e478"
metafile = true
[[files]]
@ -205,20 +225,15 @@ metafile = true
[[files]]
file = "mods/viafabric.pw.toml"
hash = "b8c42905346e451f366a27c8a246b286f55fb5e5b07471667a03d0fcfadca8a9"
hash = "d6b857d2c020eea18f40aa4406c6a35432ef7f6ff97a3033232c7dfc559fa4ac"
metafile = true
[[files]]
file = "mods/vmp-fabric.pw.toml"
hash = "9906f7cbfd75ffd5ae8c1e19c874a1648647c2523fdcce50f64f2b8c08e29ae6"
metafile = true
[[files]]
file = "mods/x-backup.pw.toml"
hash = "a211502d3b86987b46506da411882d8167a7c39ee5a7d8776efcfeea01344184"
hash = "fde5b4407f35051b3c35e2bc04a71540a1ec21832de609c75f79ae24bb2d9f1d"
metafile = true
[[files]]
file = "mods/yacl.pw.toml"
hash = "4b7c266cf6c560aec780394f515cbe880c72fb07286f60694823fde3b926f184"
hash = "75b191c621b271734901f012011f22e0c8f5c21ee5de1bfa369ace9540fd1e76"
metafile = true

View File

@ -1,13 +1,13 @@
name = "Alternate Current"
filename = "alternate-current-mc1.21.2-1.9.0.jar"
filename = "alternate-current-mc1.21.2-1.9.1.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/r0v8vy1s/versions/ponAdJiF/alternate-current-mc1.21.2-1.9.0.jar"
url = "https://cdn.modrinth.com/data/r0v8vy1s/versions/DwfiGUVU/alternate-current-mc1.21.2-1.9.1.jar"
hash-format = "sha512"
hash = "1d55c1c1b0b9cfd25bfccfaf66e8a9d2c3e775cbc013fab4e34e870017707c210973a8adc89783d12709c5b290116bf9de4ab08d8d9f5e6871f4810d100f52c0"
hash = "8ed44291a8aed3e1c9750cfce85e0de679daeff7c3b1bc8f6329b41ba4570442750b8039d2d5c79c32655fc9372ea35843c60805438d33888b30e28731c39137"
[update]
[update.modrinth]
mod-id = "r0v8vy1s"
version = "ponAdJiF"
version = "DwfiGUVU"

View File

@ -1,13 +1,13 @@
name = "Architectury API"
filename = "architectury-15.0.1-fabric.jar"
filename = "architectury-15.0.3-fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/XRwibvvn/architectury-15.0.1-fabric.jar"
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/73nlw3WM/architectury-15.0.3-fabric.jar"
hash-format = "sha512"
hash = "df0e163a560439c1911c584821a643c665b13bbd541db9a9f318cdf33db0aee4573e3c901e4a3aad585e10013de1b4dc62143dce0855a2c915fcd0b35ee28263"
hash = "6acc7cfccfc6e93fd8c1895fb2c489cbabd27265f38f7cbad98ddaab2cb2e6d1601633bd12cf26fc0bb100a87949ee06b872f333cf7b8490cccc0082ac586dcb"
[update]
[update.modrinth]
mod-id = "lhGA9TYQ"
version = "XRwibvvn"
version = "73nlw3WM"

View File

@ -1,13 +1,13 @@
name = "Balm"
filename = "balm-fabric-1.21.4-21.4.5.jar"
filename = "balm-fabric-1.21.4-21.4.33.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/9pTQ0wCu/balm-fabric-1.21.4-21.4.5.jar"
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/urF0zb9k/balm-fabric-1.21.4-21.4.33.jar"
hash-format = "sha512"
hash = "cb7ae3fd9be8a9c2bdaee53787dab640fc09009e259fbf5e11566c16665835b43528603bda5716c1d8f84eb40abb5b8573b6448e77194b9779fa703bda1c4c29"
hash = "55f4bfc262b2f9b96fd14a21393531c1ea9ef8a954e5dd6acd7ce200b6918d0f49e96ce7c4fd2cf05ff65a57c06275f75a7f5606e5516995a5054f995f5518db"
[update]
[update.modrinth]
mod-id = "MBAkmtvl"
version = "9pTQ0wCu"
version = "urF0zb9k"

View File

@ -0,0 +1,13 @@
name = "BlueMap"
filename = "bluemap-5.7-fabric.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/Dr2hvJBc/bluemap-5.7-fabric.jar"
hash-format = "sha512"
hash = "b7483d6ff90f09258f994a6f487846c1dfe814f1d0af931bd50426fd0afc98ccad033c5f440705edc08a8ced03cf216171ba1571db2221aca4ec620d676443a4"
[update]
[update.modrinth]
mod-id = "swbUV1cr"
version = "Dr2hvJBc"

View File

@ -1,13 +1,13 @@
name = "Concurrent Chunk Management Engine (Fabric)"
filename = "c2me-fabric-mc1.21.4-0.3.2+alpha.0.18.jar"
filename = "c2me-fabric-mc1.21.4-0.3.1.3.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/WINvcDlQ/c2me-fabric-mc1.21.4-0.3.2%2Balpha.0.18.jar"
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/EzvMx6b2/c2me-fabric-mc1.21.4-0.3.1.3.0.jar"
hash-format = "sha512"
hash = "dd454e7d07098394c9ffb94e1ec6316a037506b780d6fe725867704ba065fe34669ff722a69d0822905396cfa9c5157bb5c586b99dfb8d87231196017ebd8a03"
hash = "f944bf4319cfa6fb645d0cbe807b82c74784f44ef7ac75273efa161be4625aa80390ec8cf32a232c0ebce0d0cb23b090979019d93e7550771de56d09d920dd13"
[update]
[update.modrinth]
mod-id = "VSNURh3q"
version = "WINvcDlQ"
version = "EzvMx6b2"

View File

@ -1,13 +1,13 @@
name = "Collective"
filename = "collective-1.21.4-7.89.jar"
filename = "collective-1.21.4-8.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/F3ciVO4i/collective-1.21.4-7.89.jar"
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/I5jY2gQ2/collective-1.21.4-8.3.jar"
hash-format = "sha512"
hash = "8659df746343e697388b878b52d8eb49027ca528a75f7549177539bf21af26c4f0053acf4552abb36c8d5e5010d6d07976ba64e2b256cda4145785a6acab795d"
hash = "95c18b55a631bfdcbc501c17238f36c1f284d90a866f498dbf2b77ce7b9dcb0260cba0143a16dcbf254660710ea8fdbd8948cac94139e660bf25581b49fa2337"
[update]
[update.modrinth]
mod-id = "e0M1UDsY"
version = "F3ciVO4i"
version = "I5jY2gQ2"

View File

@ -1,13 +1,13 @@
name = "Compact Help Command"
filename = "compacthelpcommand-1.21.4-2.7.jar"
filename = "compacthelpcommand-1.21.4-2.8.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/XdiGl7ZL/versions/TivaOLr7/compacthelpcommand-1.21.4-2.7.jar"
url = "https://cdn.modrinth.com/data/XdiGl7ZL/versions/JBHidcCQ/compacthelpcommand-1.21.4-2.8.jar"
hash-format = "sha512"
hash = "c74e3aeebdc0b4f5a8e671745081e948ad472f074cffec330ab694c874aa4d50061edc4708fdd80f53be2bccff5606254ac68bdb479aa27d3d343a5ab2e79af4"
hash = "f0122b470d50584b9c1379e6beb14122124d870a7ebb0fa85a6997bd6f18366f9d3f3473d55737301911ef82b7c170cb4e13ab920e212fd84092420313e4c6a3"
[update]
[update.modrinth]
mod-id = "XdiGl7ZL"
version = "TivaOLr7"
version = "JBHidcCQ"

View File

@ -1,13 +1,13 @@
name = "CraterLib"
filename = "CraterLib-Fabric-1.21.3-2.1.2.jar"
filename = "CraterLib-Fabric-1.21.3-2.1.5.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Nn8Wasaq/versions/XCM1DsHb/CraterLib-Fabric-1.21.3-2.1.2.jar"
url = "https://cdn.modrinth.com/data/Nn8Wasaq/versions/JAVuxguJ/CraterLib-Fabric-1.21.3-2.1.5.jar"
hash-format = "sha512"
hash = "02e4edf582ad33b906b7831262e4587f6888c58729b5cbf67d437a007d6abdbc78092099c10da3ab3d4c492fb4e3191adcf420a52a003d2f66efb8537b0d18f4"
hash = "f8d4addf19fca3c4a139e5b2bc2996ea316aa9c532bd7653e6188f3f95f574a64ae79c0f9fd848f21c386812186393715421515e938213201b867373b192685a"
[update]
[update.modrinth]
mod-id = "Nn8Wasaq"
version = "XCM1DsHb"
version = "JAVuxguJ"

View File

@ -1,13 +1,13 @@
name = "Debugify"
filename = "Debugify-1.21.4+1.0.jar"
filename = "Debugify-1.21.4+1.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/TxwUizo2/Debugify-1.21.4%2B1.0.jar"
url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/yjpSgPEw/Debugify-1.21.4%2B1.1.jar"
hash-format = "sha512"
hash = "9108fc2e114400ea72698b07fdf805c708e453e374b3794ebc8afcc2bd6e60cda9297b86fedae49b3b044704cebcde430f98aae3fd9db355ef0518a2887548b8"
hash = "6fcc75db9606e443b976b913aee9cba244dc288f652c1d992329087eefae174f92b345966c925e3749d7b819634f0db4e5a285200597b9641788f22a7c7e2ea5"
[update]
[update.modrinth]
mod-id = "QwxR6Gcd"
version = "TxwUizo2"
version = "yjpSgPEw"

View File

@ -1,13 +1,13 @@
name = "Dismount Entity"
filename = "dismountentity-1.21.4-3.5.jar"
filename = "dismountentity-1.21.4-3.6.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/H7N61Wcl/versions/FrZzAEND/dismountentity-1.21.4-3.5.jar"
url = "https://cdn.modrinth.com/data/H7N61Wcl/versions/jbnDBycN/dismountentity-1.21.4-3.6.jar"
hash-format = "sha512"
hash = "d1b1da29e88e58af2147b962c4c0ec74f099eb3139a4c86fedbc9d533e090e974d370dc95d087e9a6eab650073c6dd5a5151f7e2a9c6108e0376f2b533b7e1b5"
hash = "18a39c8720fba3a1af171ce8ceb95285ab563e1610d5e93d2105344aba1e03dbb828365924338b22f14dddfbb6477e6b000b5fa6b117d3b9cb545592112783e1"
[update]
[update.modrinth]
mod-id = "H7N61Wcl"
version = "FrZzAEND"
version = "jbnDBycN"

View File

@ -0,0 +1,13 @@
name = "Distant Horizons"
filename = "DistantHorizons-neoforge-fabric-2.3.2-b-1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/uCdwusMi/versions/94McsAoL/DistantHorizons-neoforge-fabric-2.3.2-b-1.21.4.jar"
hash-format = "sha512"
hash = "f5c16f004b708251d1442c95728defb938de23d3bb21c060042c2b761544d859fb31019db418ceda190d4c97ed8ecd7e03f2fabfcb406c6a01156a6525da0911"
[update]
[update.modrinth]
mod-id = "uCdwusMi"
version = "94McsAoL"

View File

@ -1,13 +1,13 @@
name = "Double Doors"
filename = "doubledoors-1.21.4-6.0.jar"
filename = "doubledoors-1.21.4-7.0.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/JrvR9OHr/versions/nBTIX00E/doubledoors-1.21.4-6.0.jar"
url = "https://cdn.modrinth.com/data/JrvR9OHr/versions/oqgL7jds/doubledoors-1.21.4-7.0.jar"
hash-format = "sha512"
hash = "90f47668e814a2a802679c5c3eb5e0ad76c3f8e09dc07ace66678b721e8bfc9f46c2687a762f7db96d7eb2244b6b760dbdfe665d134449c0866f8e1e96db6f6f"
hash = "b2ade49b86d64099b8c49b8483ae263c765faabf5ea471dcaf6c09cb195b98a1fe5e6caacf434f3cbe9bc127789e601bf906130b4d828211f56b76b4dcc9cbfd"
[update]
[update.modrinth]
mod-id = "JrvR9OHr"
version = "nBTIX00E"
version = "oqgL7jds"

View File

@ -1,13 +1,13 @@
name = "Fabric API"
filename = "fabric-api-0.114.0+1.21.4.jar"
filename = "fabric-api-0.119.2+1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/5tj7y3PJ/fabric-api-0.114.0%2B1.21.4.jar"
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/bQZpGIz0/fabric-api-0.119.2%2B1.21.4.jar"
hash-format = "sha512"
hash = "5e801dd76fa4ca0d393cd8c82059556bee420d8610e1ffb09c2c90eb487e997acb5061ec571250db1fe57491505f304b8222fcbe02243048c5df809a610d94a6"
hash = "bb8de90d5d1165ecc17a620ec24ce6946f578e1d834ddc49f85c2816a0c3ba954ec37e64f625a2f496d35ac1db85b495f978a402a62bbfcc561795de3098b5c9"
[update]
[update.modrinth]
mod-id = "P7dR8mSH"
version = "5tj7y3PJ"
version = "bQZpGIz0"

View File

@ -1,13 +1,13 @@
name = "Fabric Language Kotlin"
filename = "fabric-language-kotlin-1.13.0+kotlin.2.1.0.jar"
filename = "fabric-language-kotlin-1.13.3+kotlin.2.1.21.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/csX9r2wS/fabric-language-kotlin-1.13.0%2Bkotlin.2.1.0.jar"
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/iqWDz8qt/fabric-language-kotlin-1.13.3%2Bkotlin.2.1.21.jar"
hash-format = "sha512"
hash = "bd6acac5e2196aae0095ec453aec46d54e0d925289895fac94b1426cabd3db7e275302502475c61b9719fc8f026e7aaa305122dcdf374c58620bc38b8b4e99a7"
hash = "805eb96067560fa8acc8fcc7dbfba4ad8eed1a2bc9b46566e184f122533fdff844288f3df635762e1af927a4efe8989e9f11007a24bcdc73a32fc2dbebd720c3"
[update]
[update.modrinth]
mod-id = "Ha28R6CL"
version = "csX9r2wS"
version = "iqWDz8qt"

View File

@ -0,0 +1,13 @@
name = "Fast Backups"
filename = "fastback-0.23.0+1.21.4-fabric.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/ZHKrK8Rp/versions/1KuX59cj/fastback-0.23.0%2B1.21.4-fabric.jar"
hash-format = "sha512"
hash = "bf242614ffcd3c35d2ee4dcf9de5ba4b20a4bd56fbf3ba69dc33063185e501bf58cfa920c915a7849b19453c6e4f04332228f20270a2a3197b34fa1d6ec6a433"
[update]
[update.modrinth]
mod-id = "ZHKrK8Rp"
version = "1KuX59cj"

View File

@ -1,13 +1,13 @@
name = "Followers Teleport Too"
filename = "followersteleporttoo-1.21.4-2.6.jar"
filename = "followersteleporttoo-1.21.4-2.7.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/E5YVNsbH/versions/s48s1B03/followersteleporttoo-1.21.4-2.6.jar"
url = "https://cdn.modrinth.com/data/E5YVNsbH/versions/ZQXVM2vF/followersteleporttoo-1.21.4-2.7.jar"
hash-format = "sha512"
hash = "cd66443542e0aaa651c74ee4868699fa8916da95a315290a94f1fd4bf8c1c2bbd85a746d054359a47cb34d4efd6c2f88ce934b89efa86826d0fb22d39231fd21"
hash = "dd8eb6d728e80a196f9d34055d908272fdcb2b222f83301d4896398142abbde8291e9e4ddfd77c6933fa682eeb7c05c4813ada5a046a8bfd7c2fdb52f95c1e01"
[update]
[update.modrinth]
mod-id = "E5YVNsbH"
version = "s48s1B03"
version = "ZQXVM2vF"

View File

@ -0,0 +1,13 @@
name = "Head Name Fix"
filename = "head-name-fix-1.21.4-1.3.2.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/rbU0dAND/versions/OdeNSZVg/head-name-fix-1.21.4-1.3.2.jar"
hash-format = "sha512"
hash = "ec7fc1d7be20ed8c8a08a3938caee14b93c25cc1780d76ec21e14358a29b9cad6cef691cd5e976d282e298a7f4ab568bdfaccd912ba3c289033f7f6d6a477db3"
[update]
[update.modrinth]
mod-id = "rbU0dAND"
version = "OdeNSZVg"

View File

@ -1,13 +1,13 @@
name = "Helpful Commands"
filename = "helpfulcommands-3.2.0-1.21.4.jar"
filename = "helpfulcommands-3.3.0-1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/lIRUH8gT/versions/qgYSdjHf/helpfulcommands-3.2.0-1.21.4.jar"
url = "https://cdn.modrinth.com/data/lIRUH8gT/versions/vz3eXH3v/helpfulcommands-3.3.0-1.21.4.jar"
hash-format = "sha512"
hash = "91d1fbd7d5c9849ce4209d12fb5115ececa71646f96c6ed106c3de8ac51cadcadf59954cbc494ed0927d6318ec4101e55f2807837c348f891ae5dd6f71f11064"
hash = "c966566fdec35df2a3f5e2ddeec4e701e09c4e6fdc1d289eca37fe6aff1eefbb5615f77793a1a72c8fb26f768416de951c42c9e667631715fc59b2c866b85f4c"
[update]
[update.modrinth]
mod-id = "lIRUH8gT"
version = "qgYSdjHf"
version = "vz3eXH3v"

View File

@ -1,13 +1,13 @@
name = "Inventory Essentials"
filename = "inventoryessentials-fabric-1.21.4-21.4.1.jar"
filename = "inventoryessentials-fabric-1.21.4-21.4.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Boon8xwi/versions/hDg8NyPb/inventoryessentials-fabric-1.21.4-21.4.1.jar"
url = "https://cdn.modrinth.com/data/Boon8xwi/versions/ZI6QIfgg/inventoryessentials-fabric-1.21.4-21.4.3.jar"
hash-format = "sha512"
hash = "608edf8877c054248e7d3990704241beff2fedc9066e52f0c015a303f13d7408d63798ac86e64ec2e3551e2f0213ffa6b49e3071c18fbb7a6f09334d525d8f11"
hash = "f1bafa5a62aa4a92a4f1ea8ef827160d974fbd4593c72e81d10c262eb95157c8e6482ab55e1a5df563780497de9f0bd40522d15fb785acd357ce8873bbfb5c6f"
[update]
[update.modrinth]
mod-id = "Boon8xwi"
version = "hDg8NyPb"
version = "ZI6QIfgg"

View File

@ -1,13 +1,13 @@
name = "Jade 🔍"
filename = "Jade-1.21.4-Fabric-17.1.2.jar"
filename = "Jade-1.21.4-Fabric-17.2.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/EJub6tVz/Jade-1.21.4-Fabric-17.1.2.jar"
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/sSHUBFoq/Jade-1.21.4-Fabric-17.2.2.jar"
hash-format = "sha512"
hash = "8eedbaf50b94fcfa822609facce7152c25be80449e804842a96e9194c8e669b03836c61bb96a6d3ae0455c1f5a88766293e7ad4ce14da1585640077512d25944"
hash = "dbe2ce335170c7a7079595c6341188ef07f54704faab7e3919a7c24130d3b25f321425c5f28107ea706f8d7e47e1d49147882ab05c35cbe6af7ac9d371ca68e7"
[update]
[update.modrinth]
mod-id = "nvQzSEkH"
version = "EJub6tVz"
version = "sSHUBFoq"

View File

@ -1,13 +1,13 @@
name = "JamLib"
filename = "jamlib-fabric-1.2.2+1.21.4.jar"
filename = "jamlib-fabric-1.3.5+1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/IYY9Siz8/versions/2J8TKset/jamlib-fabric-1.2.2%2B1.21.4.jar"
url = "https://cdn.modrinth.com/data/IYY9Siz8/versions/GSAIeO3Q/jamlib-fabric-1.3.5%2B1.21.4.jar"
hash-format = "sha512"
hash = "b20e4d625d36d16b06eaa8410bf01042487d2b5896a1f0cffc6b713b3e1112498ef63a021ee776da02d79d367c658935aaba20273d7f2f4a731d2b1890e484e2"
hash = "f212f965dda1283057469ab1952a39a364ed6dd8c06d591cc2464006b692cc4287cd723dc9fefcbd5b2e6e306ec84a121623cde960690df2332ec90c8d6f58fe"
[update]
[update.modrinth]
mod-id = "IYY9Siz8"
version = "2J8TKset"
version = "GSAIeO3Q"

View File

@ -1,13 +1,13 @@
name = "JourneyMap"
filename = "journeymap-fabric-1.21.4-6.0.0-beta.32.jar"
filename = "journeymap-fabric-1.21.4-6.0.0-beta.47.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/6YDcPKep/journeymap-fabric-1.21.4-6.0.0-beta.32.jar"
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/bjbTbat1/journeymap-fabric-1.21.4-6.0.0-beta.47.jar"
hash-format = "sha512"
hash = "121d6040e064e7236bac2f1be3587e07cec9df5ac78812f9796bc538a7ff3e932143cfa8ae5ed34219b1935b039f075d34b02a4e13868d49a1fa9068860327e4"
hash = "062a81898c7f558cd6820d9a2c4276466b69abf7affb5dc370026381ef2262c26329a6fadb76a28893778166a3cd5e048e4f96354786304d93e2a67a54ae510a"
[update]
[update.modrinth]
mod-id = "lfHFW1mp"
version = "6YDcPKep"
version = "bjbTbat1"

View File

@ -1,13 +1,13 @@
name = "Ksyxis"
filename = "Ksyxis-1.3.2.jar"
filename = "Ksyxis-1.3.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/2ecVyZ49/versions/QFfBwOwT/Ksyxis-1.3.2.jar"
url = "https://cdn.modrinth.com/data/2ecVyZ49/versions/ueN87SNs/Ksyxis-1.3.3.jar"
hash-format = "sha512"
hash = "dde5310b59efdd98f0af3c687e14ad5de9207296a1e0003e2e07fccc090b6351fe5769237b1d9e666686521eba91fa4ebcb7cd5a085f805f524385e379ed72cc"
hash = "e754d8709d4a4c4ea894dda7bc5c3b017c8baddaaaa67b2319881d52dcce5ecd12d626087d55008de5eb942b02cf9e2099c71602296c5b63ea75abb2452b0bc7"
[update]
[update.modrinth]
mod-id = "2ecVyZ49"
version = "QFfBwOwT"
version = "ueN87SNs"

View File

@ -1,13 +1,13 @@
name = "Leaves Us In Peace"
filename = "leaves-us-in-peace-1.7.2+MC1.21.2-1.21.4.jar"
filename = "leaves-us-in-peace-1.7.4+MC1.21.2-1.21.4.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/IIpWIe1o/versions/Gkpianfc/leaves-us-in-peace-1.7.2%2BMC1.21.2-1.21.4.jar"
url = "https://cdn.modrinth.com/data/IIpWIe1o/versions/9doWMfek/leaves-us-in-peace-1.7.4%2BMC1.21.2-1.21.4.jar"
hash-format = "sha512"
hash = "e55550845a8a721f1a9ae508e9c6c7069d7768a57b17f156ccdeed213d3d29d3e22346bee59322faba58ebca499ef03d3331138ea9540663fda5dc3b475e5c30"
hash = "7d3cf7eca1e3b31ddc9b41fc7871239c04ed644b3f964fea844d8a1fb2ab97fc1e36587e34a9928e1cf27b1cfede5554598705b5b054792f8bcb83cd5cd004a8"
[update]
[update.modrinth]
mod-id = "IIpWIe1o"
version = "Gkpianfc"
version = "9doWMfek"

View File

@ -1,13 +1,13 @@
name = "Lithium"
filename = "lithium-fabric-0.14.3+mc1.21.4.jar"
filename = "lithium-fabric-0.15.3+mc1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/t1FlWYl9/lithium-fabric-0.14.3%2Bmc1.21.4.jar"
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/u8pHPXJl/lithium-fabric-0.15.3%2Bmc1.21.4.jar"
hash-format = "sha512"
hash = "1a4eafbdcee3886d33c04aa462d13a8c1e345ff492001add262476585b78327a2d016e56385bced869615bc97161a34a0a716f5f579c8c1d7080b278f4f11183"
hash = "b8b541c0e968571c8972872b342e34b92573bc9210d455dc1349589f30a67a90d930dbfd99b176ab9b110350ceb53e11118378dc13a35e83a9090826627bdac0"
[update]
[update.modrinth]
mod-id = "gvQqBUqZ"
version = "t1FlWYl9"
version = "u8pHPXJl"

View File

@ -1,13 +1,13 @@
name = "ModernFix"
filename = "modernfix-fabric-5.20.1+mc1.21.4.jar"
filename = "modernfix-fabric-5.20.3+mc1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/gx7PIV8n/modernfix-fabric-5.20.1%2Bmc1.21.4.jar"
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/ZGxQddYr/modernfix-fabric-5.20.3%2Bmc1.21.4.jar"
hash-format = "sha512"
hash = "e1596a89dc100f454c445d64b5ebf59f1788de22270a4ca52837337abe6a76c517c771e234ededbadf5b51dbb62efe1bc0eccee841c45bc263f9406d8348dfe8"
hash = "ae49114c92a048c9ce79e197fc4df028e186cf13546e710f72247382fa8076f0b70d6aa3224951f4a36c886ca236f099a011f20b021a2b0d1a75c631da4d7d52"
[update]
[update.modrinth]
mod-id = "nmDcB62a"
version = "gx7PIV8n"
version = "ZGxQddYr"

View File

@ -1,13 +1,13 @@
name = "NetherPortalFix"
filename = "netherportalfix-fabric-1.21.4-21.4.1.jar"
filename = "netherportalfix-fabric-1.21.4-21.4.3.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/nPZr02ET/versions/QFwLWcVf/netherportalfix-fabric-1.21.4-21.4.1.jar"
url = "https://cdn.modrinth.com/data/nPZr02ET/versions/DuRtZjks/netherportalfix-fabric-1.21.4-21.4.3.jar"
hash-format = "sha512"
hash = "29687c4a89b0b3b03025a18bc9d7c6445cdc0e06b1782d83ea889d0651623fec6e0c05a01490b2da09deb1934dd1f1eb000ee19ed9235182fe4d806db5ffa642"
hash = "7a0028dae68f43d3c95563b2aca496149c457aa5714a8e90ff582c8d0cd3d0c16497d5595ce29dc9a3faa46770f442aaf44973c98d1011f4780e2ba46155024b"
[update]
[update.modrinth]
mod-id = "nPZr02ET"
version = "QFwLWcVf"
version = "DuRtZjks"

View File

@ -1,13 +1,13 @@
name = "Ping Wheel"
filename = "Ping-Wheel-1.10.0-fabric-1.21.4.jar"
filename = "Ping-Wheel-1.10.2-fabric-1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/QQXAdCzh/versions/j4MXM9sv/Ping-Wheel-1.10.0-fabric-1.21.4.jar"
url = "https://cdn.modrinth.com/data/QQXAdCzh/versions/nw7CYtga/Ping-Wheel-1.10.2-fabric-1.21.4.jar"
hash-format = "sha512"
hash = "424d97183ae963c557c5f729a881e6e547021648a98e21d7ccc473fdfd4687393f0a259fff0abdf8a8b87983bf05d4b8aeaf7858c0993115351327f2afe137db"
hash = "2fba3069dca4fa3387485a202bf4c133ae7bc6d851ea6318365bdecd3b8aeb268bbd15bc07e6eea463785e04804a01a2d40f2b04f9ff4b93b385848055710169"
[update]
[update.modrinth]
mod-id = "QQXAdCzh"
version = "j4MXM9sv"
version = "nw7CYtga"

View File

@ -1,13 +1,13 @@
name = "Plasmo Voice"
filename = "plasmovoice-fabric-1.21.4-2.1.2.jar"
filename = "plasmovoice-fabric-1.21.4-2.1.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/1bZhdhsH/versions/c1KEbu22/plasmovoice-fabric-1.21.4-2.1.2.jar"
url = "https://cdn.modrinth.com/data/1bZhdhsH/versions/Ju6WYjI8/plasmovoice-fabric-1.21.4-2.1.4.jar"
hash-format = "sha512"
hash = "fe90666c6fcd6be45dafef7ae4b1cd0ea75acf8f517db05e6cb7a032936e1079ce5621673156ce3533331759304d8eb6e8d29bb14f065e4307a372f41c4bf962"
hash = "e4eff058115063aca82b80dace6c5ca1cbf7dd73b3c695d083a39de62c9e09f6d261e7b45361f8971ea2a60bab90a6ff4f4e509c545b161aa338a95fbe2f4825"
[update]
[update.modrinth]
mod-id = "1bZhdhsH"
version = "c1KEbu22"
version = "Ju6WYjI8"

View File

@ -1,13 +1,13 @@
name = "Roughly Enough Items (REI)"
filename = "RoughlyEnoughItems-18.0.796-fabric.jar"
filename = "RoughlyEnoughItems-18.0.804-fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nfn13YXA/versions/aBHkMOqF/RoughlyEnoughItems-18.0.796-fabric.jar"
url = "https://cdn.modrinth.com/data/nfn13YXA/versions/9cWZy55a/RoughlyEnoughItems-18.0.804-fabric.jar"
hash-format = "sha512"
hash = "d54516e02f8e0b5a11ddad70ffb6e6f3fa8c8dfc906456163cd26b628b4f5bacb9a97b20eca984ce4a549a370f61b5b03ba99be58dc1182b404446d2d1cc96e7"
hash = "81c0afdf1462b0a6d386773cd70a3bc04e95da30dcc55cd97fb823eaee01208ef43e84b5c3ea2b7fd4aa5cdf69107ae8fdcf7436fb09b77839e8e25f6fdb224d"
[update]
[update.modrinth]
mod-id = "nfn13YXA"
version = "aBHkMOqF"
version = "9cWZy55a"

View File

@ -1,13 +1,13 @@
name = "RightClickHarvest"
filename = "rightclickharvest-fabric-4.4.4+1.21.4.jar"
filename = "rightclickharvest-fabric-4.5.3+1.21.4-patch.1.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/Cnejf5xM/versions/lylk05D8/rightclickharvest-fabric-4.4.4%2B1.21.4.jar"
url = "https://cdn.modrinth.com/data/Cnejf5xM/versions/ilSmuwZP/rightclickharvest-fabric-4.5.3%2B1.21.4-patch.1.jar"
hash-format = "sha512"
hash = "c972c4539652adb01f2d7d7e313be39dd49f44a71510a0fce64ae1915b44968b2450ace3e5c38af8959e76792f813ca56ee7fbc4f012e7b6f27d10934828e7f3"
hash = "d486b87636fe4960e7c48bd6f2cf266214079a4b3ab4a01fbdc59a02f2179cd0bc25475747de3e7cb7ce38d3e7ccb2369ca87ca1f1634b447e78907e9e528876"
[update]
[update.modrinth]
mod-id = "Cnejf5xM"
version = "lylk05D8"
version = "ilSmuwZP"

View File

@ -1,13 +1,13 @@
name = "Simple Discord Link"
filename = "SimpleDiscordLink-Universal-3.2.1.jar"
filename = "SimpleDiscordLink-Universal-3.3.1.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/Sh0YauEf/versions/AVJaD8ZA/SimpleDiscordLink-Universal-3.2.1.jar"
url = "https://cdn.modrinth.com/data/Sh0YauEf/versions/U3TpSJoR/SimpleDiscordLink-Universal-3.3.1.jar"
hash-format = "sha512"
hash = "b75f10d201509ab9c3ed14b89d369f3d0008a33ac48c38cc1381e1910fbeea4280f1b40973dd945171f2a113266769e78a92777585ade81ea0a27dac1e28a963"
hash = "bca2573b976653539945454e0ebcefcf72d8a4ef4ca008db124c705184cc99de15fb2acdb74cebe92f62611eb01d7611afe19de40b036443a2381d7a8de9560d"
[update]
[update.modrinth]
mod-id = "Sh0YauEf"
version = "AVJaD8ZA"
version = "U3TpSJoR"

View File

@ -1,13 +1,13 @@
name = "ViaFabric"
filename = "ViaFabric-0.4.17+93-main.jar"
filename = "ViaFabric-0.4.17+102-main.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/YlKdE5VK/versions/UGHhXjIX/ViaFabric-0.4.17%2B93-main.jar"
url = "https://cdn.modrinth.com/data/YlKdE5VK/versions/YVYkific/ViaFabric-0.4.17%2B102-main.jar"
hash-format = "sha512"
hash = "699a2599b9ae5b1aee8ae65fab2e3628b3d806304d6768c329b63a4861043a65cfc4b4469e8344768da2619f38301f0e5ad4cc9a3912d82592cd4ed091d6d003"
hash = "d6439b58573e8b1864fe9e40f8032680ee5dc1dba473ba7de1d56a7f2565e864478d0a220d0a65142be4999568edfc383d467854fe4ea3944671eadec253f01e"
[update]
[update.modrinth]
mod-id = "YlKdE5VK"
version = "UGHhXjIX"
version = "YVYkific"

View File

@ -1,13 +1,13 @@
name = "Very Many Players (Fabric)"
filename = "vmp-fabric-mc1.21.4-0.2.0+beta.7.187-all.jar"
filename = "vmp-fabric-mc1.21.4-0.2.0+beta.7.192-all.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/wnEe9KBa/versions/k1tcjmTr/vmp-fabric-mc1.21.4-0.2.0%2Bbeta.7.187-all.jar"
url = "https://cdn.modrinth.com/data/wnEe9KBa/versions/61Gy0NAD/vmp-fabric-mc1.21.4-0.2.0%2Bbeta.7.192-all.jar"
hash-format = "sha512"
hash = "a9ead8757aa38f5d6384a4ceac7f81a512794ad1e1e5a8906c5d175b63b698b5eea631d58d5648d5ae846b6debb46e93725cbfb39cbed907770d728b5bc2d0cc"
hash = "4e13cfbb97099784bb27fbb87eebc163974ba6c31081829d01ae435920d2604df03c625d5daecbefa1a0cca40b699840d5e964819993b451b1c9c7a7bd7c80d2"
[update]
[update.modrinth]
mod-id = "wnEe9KBa"
version = "k1tcjmTr"
version = "61Gy0NAD"

View File

@ -1,13 +0,0 @@
name = "X Backup"
filename = "x-backup-0.3.7+1.21.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/zJ4gyF5J/versions/zvMdJ1o2/x-backup-0.3.7%2B1.21.4.jar"
hash-format = "sha512"
hash = "764241c0c119b0701f550e52b4f5887736b9dab2f7e7afd782fe57e94e00716965b489bd87ba4f5abdf0e70814f7d530d887b9382c3184b80f886c9f00d7ea3b"
[update]
[update.modrinth]
mod-id = "zJ4gyF5J"
version = "zvMdJ1o2"

View File

@ -1,13 +1,13 @@
name = "YetAnotherConfigLib (YACL)"
filename = "YetAnotherConfigLib-3.6.2+1.21.4-fabric.jar"
filename = "yet_another_config_lib_v3-3.6.6+1.21.4-fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/VtWuZoXP/YetAnotherConfigLib-3.6.2%2B1.21.4-fabric.jar"
url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/XeXZrziK/yet_another_config_lib_v3-3.6.6%2B1.21.4-fabric.jar"
hash-format = "sha512"
hash = "50f3996aa4382692bbe569ee26506dacd0f4775d86964b5a5c47451e9514d5bf755b5fc1b75e629fc6391fe33d98598977e15c8880ed0f5785c5511ac3360933"
hash = "c4904eae179e5a012e0bcee882a650a54c021105c03ef613893f82b13a793a3b19f30748e281b7f2d62308975296177b236ea79ad7bfdbf35366fedb2fa02171"
[update]
[update.modrinth]
mod-id = "1eAoo2KR"
version = "VtWuZoXP"
version = "XeXZrziK"

View File

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "734ec8190b5786eaacb0b1729dc638bae0a878730c586edf423724bb2066de8b"
hash = "27eb40c3dda2eac3aaf6fe500d76c346d50e7048a9e64d8842a230781bd3eb15"
[versions]
fabric = "0.16.9"

4
navidrome/.env.example Normal file
View File

@ -0,0 +1,4 @@
ND_LASTFM_APIKEY=<key>
ND_LASTFM_SECRET=<secret>
ND_SPOTIFY_ID=<app_id>
ND_SPOTIFY_SECRET=<app_secret>

View File

@ -0,0 +1,20 @@
services:
navidrome:
container_name: navidrome
image: deluan/navidrome:latest
user: 1000:1000 # should be owner of volumes
ports:
- "4533:4533"
restart: unless-stopped
env_file:
- ../stack.env
environment:
# https://www.navidrome.org/docs/usage/configuration-options/#available-options
ND_BASEURL: "https://navidrome.shoebottom.ca"
ND_ALBUMPLAYCOUNT: "normalized"
ND_RECENTLYADDEDBYMODTIME: "true"
volumes:
- "/docker/appdata/navidrome/data:/data"
- "/home/isaac/Media/Music:/music/normal:ro"
- "/home/isaac/Media/Music-HQ:/music/hq:ro"
- "/home/isaac/Media/Music-LQ:/music/lq:ro"

22
nfs/docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
services:
nfs:
image: erichough/nfs-server
container_name: nfs-server
restart: unless-stopped
volumes:
- /home/isaac/Media:/nfs
- /lib/modules:/lib/modules:ro
environment:
- NFS_EXPORT_0=/nfs * (rw,no_subtree_check)
cap_add:
- SYS_ADMIN
- SYS_MODULE
ports:
- 2049:2049
- 2049:2049/udp
- 111:111
- 111:111/udp
- 32765:32765
- 32765:32765/udp
- 32767:32767
- 32767:32767/udp

View File

@ -0,0 +1,9 @@
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
ports:
- "11434:11434"
restart: unless-stopped
volumes:
- /home/isaac/Ollama:/root/.ollama

View File

@ -1,15 +1,20 @@
services:
# Eventually once on server with good gpu, use ollama instead of localhost
open-webui:
image: ghcr.io/open-webui/open-webui:dev
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
volumes:
- /docker/appdata/open-webui/data:/app/backend/data
ports:
- 9009:8080
environment:
- 'OLLAMA_BASE_URL=http://192.168.2.32:11434'
- 'OLLAMA_BASE_URL=http://ollama-network:11434'
# - 'WEBUI_SECRET_KEY=' Set this for jwt secret key. Should be rendomly generated at start
extra_hosts:
- host.docker.internal:host-gateway
restart: unless-stopped
restart: unless-stopped
networks:
- ollama_default
networks:
ollama_default:
external:
name: ollama_default

View File

@ -1,13 +1,13 @@
[Unit]
Description=Portainer container deployment service
Type=simple
[Service]
WorkingDirectory=/docker/compose/portainer
ExecStart=docker-compose up
ExecStop=docker-compose down
Restart=on-failure
RestartSec=5s
[Install]
[Unit]
Description=Portainer container deployment service
Type=simple
[Service]
WorkingDirectory=/docker/compose/portainer
ExecStart=docker-compose up
ExecStop=docker-compose down
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=default.target

2
samba/docker-compose.yml Normal file
View File

@ -0,0 +1,2 @@
# todo
# https://github.com/dperson/samba

View File

@ -0,0 +1,16 @@
services:
sillytavern:
container_name: sillytavern
hostname: sillytavern
image: ghcr.io/sillytavern/sillytavern:latest
network_mode: host
expose:
- "8000"
ports:
- "8000:8000"
volumes:
- "/docker/appdata/sillytavern/config:/home/node/app/config"
- "/docker/appdata/sillytavern/data:/home/node/app/data"
- "/docker/appdata/sillytavern/plugins:/home/node/app/plugins"
- "/docker/appdata/sillytavern/extensions:/home/node/app/public/scripts/extensions/third-party"
restart: unless-stopped

View File

@ -0,0 +1,53 @@
services:
suwayomi:
container_name: suwayomi
image: ghcr.io/suwayomi/suwayomi-server:preview
environment:
- TZ=America/Moncton # Use TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Comment these out if you do not use the flaresolverr container at the bottom of this file
- FLARESOLVERR_ENABLED=true
- FLARESOLVERR_URL=http://flaresolverr:8191
# #################################################################################################
#
# !!! IMPORTANT !!!
# - server settings can be changed during runtime in the WebUI
# - providing an environment variable will OVERWRITE the current setting value when starting the container
#
# #################################################################################################
#
# example for setting env vars:
#
- BIND_IP=0.0.0.0
- BIND_PORT=4567
# - SOCKS_PROXY_ENABLED=false
- DOWNLOAD_AS_CBZ=true
# - BASIC_AUTH_ENABLED=true
# - BASIC_AUTH_USERNAME=manga
# - BASIC_AUTH_PASSWORD=hello123
# Disabled due to takedown: "https://raw.githubusercontent.com/Kohi-den/extensions/main/index.min.json"
# Backup: "https://raw.githubusercontent.com/yuzono/manga-repo/repo/index.min.json"
- EXTENSION_REPOS=["https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json", "https://raw.githubusercontent.com/suwayomi/tachiyomi-extension/repo/index.min.json"]
volumes:
- /docker/appdata/suwayomi/data:/home/suwayomi/.local/share/Tachidesk
- /home/isaac/Media:/media
ports:
- "4567:4567"
restart: unless-stopped
flaresolverr:
image: ghcr.io/thephaseless/byparr:latest
container_name: flaresolverr
environment:
- TZ=America/Moncton # Use TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
ports:
- "8191:8191"
restart: unless-stopped
syncyomi:
container_name: syncyomi
image: ghcr.io/syncyomi/syncyomi:latest
restart: unless-stopped
environment:
- TZ=America/Moncton
volumes:
- /docker/appdata/syncyomi/config:/config
ports:
- 8283:8282

View File

@ -12,8 +12,4 @@ services:
- 7777:7777
volumes:
- /docker/appdata/terraria/worlds:/root/.local/share/Terraria/Worlds
restart: unless-stopped
networks:
default:
name: "ubuntu-server"
external: true
restart: unless-stopped

View File

@ -1,13 +1,13 @@
[Unit]
Description=Yacht container deployment service
Type=simple
[Service]
WorkingDirectory=/docker/compose/yacht
ExecStart=docker-compose up
ExecStop=docker-compose down
Restart=on-failure
RestartSec=5s
[Install]
[Unit]
Description=Yacht container deployment service
Type=simple
[Service]
WorkingDirectory=/docker/compose/yacht
ExecStart=docker-compose up
ExecStop=docker-compose down
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=default.target