mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
Whitelist players
This commit is contained in:
parent
39bb0d75e2
commit
111883e0d5
@ -170,6 +170,14 @@ Valid values are: `peaceful`, `easy`, `normal`, and `hard`, and an
|
|||||||
error message will be output in the logs if it's not one of these
|
error message will be output in the logs if it's not one of these
|
||||||
values.
|
values.
|
||||||
|
|
||||||
|
### Whitelist Players
|
||||||
|
|
||||||
|
To whitelist players for your Minecraft server, pass the Minecraft usernames separated by commas via the `WHITELIST` environment variable, such as
|
||||||
|
|
||||||
|
docker run -d -e WHITELIST=user1,user2 ...
|
||||||
|
|
||||||
|
If the `WHITELIST` environment variable is not used, any user can join your Minecraft server if it's publicly accessible.
|
||||||
|
|
||||||
### Op/Administrator Players
|
### Op/Administrator Players
|
||||||
|
|
||||||
To add more "op" (aka adminstrator) users to your Minecraft server, pass the Minecraft usernames separated by commas via the `OPS` environment variable, such as
|
To add more "op" (aka adminstrator) users to your Minecraft server, pass the Minecraft usernames separated by commas via the `OPS` environment variable, such as
|
||||||
|
@ -89,6 +89,10 @@ esac
|
|||||||
if [ ! -e server.properties ]; then
|
if [ ! -e server.properties ]; then
|
||||||
cp /tmp/server.properties .
|
cp /tmp/server.properties .
|
||||||
|
|
||||||
|
if [ -n "$WHITELIST" ]; then
|
||||||
|
sed -i "/whitelist\s*=/ c whitelist=true" /data/server.properties
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "$MOTD" ]; then
|
if [ -n "$MOTD" ]; then
|
||||||
sed -i "/motd\s*=/ c motd=$MOTD" /data/server.properties
|
sed -i "/motd\s*=/ c motd=$MOTD" /data/server.properties
|
||||||
fi
|
fi
|
||||||
@ -171,6 +175,10 @@ if [ -n "$OPS" -a ! -e ops.txt.converted ]; then
|
|||||||
echo $OPS | awk -v RS=, '{print}' >> ops.txt
|
echo $OPS | awk -v RS=, '{print}' >> ops.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$WHITELIST" -a ! -e white-list.txt.converted ]; then
|
||||||
|
echo $WHITELIST | awk -v RS=, '{print}' >> white-list.txt
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "$ICON" -a ! -e server-icon.png ]; then
|
if [ -n "$ICON" -a ! -e server-icon.png ]; then
|
||||||
echo "Using server icon from $ICON..."
|
echo "Using server icon from $ICON..."
|
||||||
# Not sure what it is yet...call it "img"
|
# Not sure what it is yet...call it "img"
|
||||||
|
Loading…
Reference in New Issue
Block a user