mirror of
https://github.com/DerTyp7/docker_minecraft_server_auto_starter.git
synced 2025-10-29 20:52:09 +01:00
Update Dockerfile and utils.py
This commit is contained in:
@@ -1,99 +1,46 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
auto_starter:
|
||||
container_name: mc_auto_starter
|
||||
restart: no
|
||||
image: dertyp7/minecraft_server_auto_starter:latest
|
||||
ports:
|
||||
- 25565:25565
|
||||
- 25566:25566
|
||||
environment:
|
||||
# The ip of the placeholder servers below
|
||||
PLACEHOLDER_SERVER_SLEEPING_SERVICE: "mc_placeholder_server_sleeping"
|
||||
PLACEHOLDER_SERVER_STARTING_SERVICE: "mc_placeholder_server_starting"
|
||||
|
||||
# Port mapping for the servers
|
||||
# The key is the external port of the placeholder server
|
||||
# The value is the internal ip of the actual server
|
||||
# Don't change the server port in the actual server. Use this instead
|
||||
PORT_MAP: |
|
||||
25565: "mc"
|
||||
25566: "mc2"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
# These are the placeholder servers. They are used to show the player a message
|
||||
# They are not needed, but they are nice to have
|
||||
# Keep in mind these servers are consuming some resources
|
||||
mc_placeholder_server_sleeping:
|
||||
container_name: mc_placeholder_server_sleeping
|
||||
restart: always
|
||||
image: itzg/minecraft-server:java8
|
||||
environment:
|
||||
VERSION: "1.12.2"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Sleeping | Join to wake up"
|
||||
|
||||
# The placeholder servers should be as lightweight as possible
|
||||
MAX_PLAYERS: "0"
|
||||
MAX_MEMORY: "512M"
|
||||
INIT_MEMORY: "512M"
|
||||
LEVEL_TYPE: "FLAT"
|
||||
JVM_XX_OPTS: "-XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseCompressedOops"
|
||||
VIEW_DISTANCE: "1"
|
||||
SPAWN_ANIMALS: "false"
|
||||
SPAWN_MONSTERS: "false"
|
||||
SNOOPER_ENABLED: "false"
|
||||
GENERATE_STRUCTURES: "false"
|
||||
ALLOW_NETHER: "false"
|
||||
ALLOW_END: "false"
|
||||
|
||||
mc_placeholder_server_starting:
|
||||
container_name: mc_placeholder_server_starting
|
||||
restart: always
|
||||
image: itzg/minecraft-server:java8
|
||||
environment:
|
||||
VERSION: "1.12.2"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Starting, please wait..."
|
||||
|
||||
# The placeholder servers should be as lightweight as possible
|
||||
MAX_PLAYERS: "0"
|
||||
MAX_MEMORY: "512M"
|
||||
INIT_MEMORY: "512M"
|
||||
LEVEL_TYPE: "FLAT"
|
||||
JVM_XX_OPTS: "-XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseCompressedOops"
|
||||
VIEW_DISTANCE: "1"
|
||||
SPAWN_ANIMALS: "false"
|
||||
SPAWN_MONSTERS: "false"
|
||||
SNOOPER_ENABLED: "false"
|
||||
GENERATE_STRUCTURES: "false"
|
||||
ALLOW_NETHER: "false"
|
||||
ALLOW_END: "false"
|
||||
|
||||
# These are the actual servers
|
||||
# For itzg/minecraft-server you can find the documentation here: https://docker-minecraft-server.readthedocs.io/en/latest/variables/
|
||||
mc:
|
||||
container_name: example_mc_server_1
|
||||
image: itzg/minecraft-server
|
||||
restart: unless-stopped #! This is important. If you restart the server always automatically, the auto_starter will not work
|
||||
environment:
|
||||
type: "PAPER"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Example Server 1"
|
||||
MAX_PLAYERS: "1"
|
||||
#! Dont change SERVER_PORT. Use PORT_IP_MAP in auto_starter instead.
|
||||
# SERVER_PORT default is "25565"
|
||||
|
||||
mc2:
|
||||
container_name: example_mc_server_2
|
||||
image: itzg/minecraft-server
|
||||
restart: unless-stopped #! This is important. If you restart the server always automatically, the auto_starter will not work
|
||||
environment:
|
||||
type: "PAPER"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Example Server 2"
|
||||
MAX_PLAYERS: "1"
|
||||
#! Dont change SERVER_PORT. Use PORT_IP_MAP in auto_starter instead.
|
||||
# SERVER_PORT default is "25565"
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
auto_starter:
|
||||
container_name: mc_auto_starter
|
||||
restart: no
|
||||
image: dertyp7/minecraft_server_auto_starter:latest
|
||||
ports:
|
||||
- 25565:25565
|
||||
- 25566:25566
|
||||
environment:
|
||||
# Port mapping for the servers
|
||||
# The key is the external port of the placeholder server
|
||||
# The value is the internal ip of the actual server
|
||||
# Don't change the server port in the actual server. Use this instead
|
||||
PORT_MAP: |
|
||||
25565: "mc"
|
||||
25566: "mc2"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
# These are the actual servers
|
||||
# For itzg/minecraft-server you can find the documentation here: https://docker-minecraft-server.readthedocs.io/en/latest/variables/
|
||||
mc:
|
||||
container_name: example_mc_server_1
|
||||
image: itzg/minecraft-server
|
||||
restart: unless-stopped #! This is important. If you restart the server always automatically, the auto_starter will not work
|
||||
environment:
|
||||
type: "PAPER"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Example Server 1"
|
||||
MAX_PLAYERS: "1"
|
||||
#! Dont change SERVER_PORT. Use PORT_IP_MAP in auto_starter instead.
|
||||
# SERVER_PORT default is "25565"
|
||||
|
||||
mc2:
|
||||
container_name: example_mc_server_2
|
||||
image: itzg/minecraft-server
|
||||
restart: unless-stopped #! This is important. If you restart the server always automatically, the auto_starter will not work
|
||||
environment:
|
||||
type: "PAPER"
|
||||
EULA: "TRUE"
|
||||
MOTD: "Example Server 2"
|
||||
MAX_PLAYERS: "1"
|
||||
#! Dont change SERVER_PORT. Use PORT_IP_MAP in auto_starter instead.
|
||||
# SERVER_PORT default is "25565"
|
||||
|
||||
Reference in New Issue
Block a user