init files

This commit is contained in:
2024-12-29 02:37:51 +02:00
commit ca80db39cb
9 changed files with 23 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
.Dockerfile
README.md
BIN
View File
Binary file not shown.
+9
View File
@@ -0,0 +1,9 @@
FROM openjdk:8-alpine
EXPOSE 25565
RUN apk add --no-cache bash
WORKDIR /app
COPY . .
ENTRYPOINT [ "/app/start.sh" ]
+7
View File
@@ -0,0 +1,7 @@
# Minecraft server - 1.5.2 - Better Than Wolf
## Build the docker image
```sh
docker build --tag clodyx/btw-server:latest .
```
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
serverJar=1.5.2.jar
Binary file not shown.
+2
View File
@@ -0,0 +1,2 @@
java -jar fabric-server-launch.jar
pause
+2
View File
@@ -0,0 +1,2 @@
#!/usr/bin/env bash
java -jar fabric-server-launch.jar