22 lines
896 B
Bash
22 lines
896 B
Bash
apt update
|
|
apt install ca-certificates curl
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
# Add the repository to Apt sources:
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] http://download.docker.com/linux/ubuntu \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
apt update
|
|
apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
|
|
|
|
groupadd --system pterodactyl
|
|
useradd --system --shell /sbin/nologin --comment "Pterodactyl Wings Daemon" --gid pterodactyl --home-dir /etc/pterodactyl --no-create-home pterodactyl
|
|
mkdir -p /run/wings/machine-id
|
|
mkdir -p /etc/pterodactyl
|
|
chown pterodactyl:pterodactyl /run/wings/machine-id
|
|
|