commit 1c1052b562562aace6270016e2ace42053b72b21 Author: Josh Ashton Date: Fri Nov 21 21:19:35 2025 -0700 init commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03bd412 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.env diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..79823e2 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,80 @@ +services: + v_ashtonia: + image: ghcr.io/beardedio/terraria:latest + ports: + - '7586:7777' + restart: unless-stopped + environment: + - world=The_Unexplored_Pasture.wld + volumes: + - /home/jashton/terraria/config:/config + tty: true + stdin_open: true + ashtonia: + image: jacobsmile/tmodloader1.4:latest + ports: + - '7495:7777' + restart: unless-stopped + environment: + - TMOD_SHUTDOWN_MESSAGE=Goodbye! + - TMOD_AUTOSAVE_INTERVAL=15 + - TMOD_AUTODOWNLOAD=2824688072,2824688266,2669644269,2619954303,2687866031,2827634634,3478100653,2562922612,3462956119,3436130213 + - TMOD_ENABLEDMODS=2824688072,2824688266,2669644269,2619954303,2687866031,2827634634,3478100653,2562922612,3462956119,3436130213 + - TMOD_MOTD=Welcome to Ashtonia I. + - TMOD_PASS=@pples2@pples + - TMOD_MAXPLAYERS=16 + - TMOD_WORLDNAME=Safe_Fold_of_Beenades + volumes: + - $HOME/terraria/data:/data + tty: true + stdin_open: true + nps_mc: + image: itzg/minecraft-server:latest + ports: + - "25565:25565" + environment: + EULA: "TRUE" + TYPE: "NEOFORGE" + MEMORY: "4096M" + TZ: "America/Denver" + DIFFICULTY: "3" + FORCE_GAMEMODE: "true" + SEED: "440966437063949288" + LEVEL: "NPSCraft" + VERSION: "1.21.1" + CURSEFORGE_FILES: | + https://www.curseforge.com/minecraft/mc-mods/servercore/files/6390848 + lithium + leaves-be-gone + tectonic + ferritecore + alternate-current + entityculling + lithostitched + puzzles-lib + https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator-forge/files/6383261 + apotheosis + placebo + jade + patchouli + apothic-attributes + apothic-spawners + apothic-enchanting + apothic-combat + https://www.curseforge.com/minecraft/mc-mods/better-combat-by-daedelus/files/6992930 + jei + simple-voice-chat + sophisticated-backpacks + sophisticated-core + https://www.curseforge.com/minecraft/mc-mods/waystones/files/6976678 + https://www.curseforge.com/minecraft/mc-mods/balm/files/7087416 + cloth-config + playeranimator + CF_API_KEY: "$$2a$$10$$eR7Ey07LzD6J13mkk892X.lDAzm8Q4mR9MQKc6JGG1j7k/KHk5Goe" + MODRINTH_PROJECTS: | + better-trees + MODRINTH_DOWNLOAD_DEPENDENCIES: "required" + volumes: + - $HOME/minecraft/nps/data:/data:Z + tty: true + stdin_open: true