update
This commit is contained in:
parent
597e766bfd
commit
5903796653
@ -1,6 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
minecraft:
|
minecraft:
|
||||||
image: openjdk:17-jdk-slim # 使用 JRE 版本的镜像
|
# image: openjdk:17-jdk-slim # 使用 JRE 版本的镜像
|
||||||
|
image: azul/zulu-openjdk:17-jre-headless
|
||||||
container_name: minecraft-server
|
container_name: minecraft-server
|
||||||
working_dir: /mc-server
|
working_dir: /mc-server
|
||||||
environment:
|
environment:
|
||||||
@ -8,13 +9,13 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ${MC_DIR}:/mc-server
|
- ${MC_DIR}:/mc-server
|
||||||
command: >
|
command: >
|
||||||
java -Xmx7G -jar ${JAR_FILE} nogui
|
java -Xms -Xmx7G -jar ${JAR_FILE} nogui
|
||||||
ports:
|
ports:
|
||||||
- "25565:25565"
|
- "25565:25565"
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 10G # 设置容器的内存限制为 10GB
|
# mem_limit: 10G # 设置容器的内存限制为 10GB
|
||||||
memswap_limit: 10G # 禁止使用 swap,并确保总内存不超过 10GB
|
# memswap_limit: 10G # 禁止使用 swap,并确保总内存不超过 10GB
|
||||||
# oom_score_adj: -1000
|
# oom_score_adj: -1000
|
||||||
stop_grace_period: 120s # 设置关闭宽限期为 120 秒
|
stop_grace_period: 120s # 设置关闭宽限期为 120 秒
|
||||||
|
Loading…
Reference in New Issue
Block a user