mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-17 07:03:57 +00:00
10 lines
195 B
Bash
Executable File
10 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if id ubuntu > /dev/null 2>&1; then
|
|
deluser ubuntu
|
|
fi
|
|
|
|
addgroup --gid 1000 minecraft
|
|
adduser --system --shell /bin/false --uid 1000 --ingroup minecraft --home /data minecraft |