mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-08-02 13:42:17 +00:00
7 lines
132 B
Bash
Executable File
7 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
groupadd --gid 1000 minecraft
|
|
useradd --system --shell /bin/false --uid 1000 -g minecraft --home /data minecraft
|