init commit

This commit is contained in:
Seth Samuel 2025-03-07 16:04:55 +13:00
commit cfb61f18c7
31 changed files with 96 additions and 0 deletions

1
.dockerignore Normal file
View file

@ -0,0 +1 @@
data

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
data/world/** filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
data/*

5
build Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
image=git.sethsamuel.online/fluffy/mc_vanilla
docker build . -t $image

BIN
data/world/DIM-1/data/raids.dat (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/DIM1/data/raids_end.dat (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
data/world/data/raids.dat (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/data/random_sequences.dat (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/data/scoreboard.dat (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/entities/r.-1.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/entities/r.-1.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/entities/r.0.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/entities/r.0.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/level.dat (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/level.dat_old (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
data/world/poi/r.-1.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/poi/r.-1.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/poi/r.0.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/poi/r.0.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/region/r.-1.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/region/r.-1.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/region/r.0.-1.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/region/r.0.0.mca (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/session.lock (Stored with Git LFS) Normal file

Binary file not shown.

BIN
data/world/stats/7eccb128-ab8f-462b-be53-97548d660acc.json (Stored with Git LFS) Normal file

Binary file not shown.

7
docker-compose.yml Normal file
View file

@ -0,0 +1,7 @@
services:
mc_server:
image: git.sethsamuel.online/fluffy/mc_vanilla
ports:
- 25999:25565
volumes:
- ./data:/mc

7
dockerfile Executable file
View file

@ -0,0 +1,7 @@
FROM debian:testing-slim
RUN apt update
RUN apt upgrade -y
RUN apt-get install -y openjdk-21-jre-headless
# ENTRYPOINT java -Xmx1024M -Xms1024M -jar /mc/server.jar nogui
ENTRYPOINT [ "/bin/bash","/mc/startServer" ]

2
run Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
docker run -it --rm -p 25999:25565 --entrypoint /bin/sh -v $(pwd)/data:/mc git.sethsamuel.online/fluffy/mc_vanilla