.onedev-buildspec.yml | Loading last commit info... | |
.gitea/workflows | ||
config | ||
mods | ||
.gitattributes | ||
.gitignore | ||
.packwizignore | ||
README.md | ||
index.toml | ||
pack.toml |
Rapid's Create & Miscellaneous ModPack
A small modpack I made because I was bored and Create is awesome.
I recommend a good enough processor to handle the server and AT MINIMUM 5GB of ram allocated to the server. I also recommend using a shader. Complementary Shaders - Reimagined is a good shader that I recommend.
Step 1: Create a Latest version Forge 1.20.1 Instance
Step 2: Download Packwiz Installer and place it on you instance folder.
Step 3: Edit Instance -> Settings -> Custom Commands, Check the Custom Commands checkbox and paste this in the pre-launch command textbox "$INST_JAVA" -jar $INST_DIR/packwiz-installer-bootstrap.jar https://git.fuge.dev/Create-Server-Modpack/~raw/main/pack.toml
Step 2: Press launch and profit.
Step 3: Use this docker-compose to easily start a minecraft server.
[!WARNING] This modpack was made to be hosted by a server and not meant for singleplayer!
[!NOTE] Temporarily removed mods due to no 1.20.1 Ports.
- Create: Sandpaper Overhaul
version: "3.8"
services:
minecraft:
image: itzg/minecraft-server
container_name: minecraft
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
MEMORY: 4G
EULA: "TRUE"
TYPE: "FORGE"
VERSION: 1.20.1
FORGE_VERSION: latest
MOTD: "Rapid's Create & Miscellaneous Server"
ENABLE_WHITELIST: true
PACKWIZ_URL: "https://git.fuge.dev/Create-Server-Modpack/~raw/main/pack.toml"
# If you wish to use a whitelist in the server
WHITELIST: |
Playername
OPS: |
Playername
volumes:
- ./server:/data
# Manual Backups sub-container to backup the server.
# backups:
# image: itzg/mc-backup
# environment:
# BACKUP_INTERVAL: "1h"
# RCON_HOST: mc
# PRE_BACKUP_SCRIPT: |
# echo "Before backup!"
# echo "Also before backup from $$RCON_HOST to $$DEST_DIR"
# # POST_BACKUP_SCRIPT_FILE: /post-backup.sh
# volumes:
# - ./server:/data:ro
# - ./mc-backups:/backups
# # - ./post-backup.sh:/post-backup.sh:ro
Then just do the command docker-compose up -d
To start the server!