mirror of
https://github.com/pterodactyl/development.git
synced 2025-12-10 10:44:48 -06:00
26 lines
708 B
Bash
Executable File
26 lines
708 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURRENT_DIRECTORY="$(pwd)"
|
|
cd /tmp
|
|
|
|
vagrant plugin install vagrant-vbguest
|
|
vagrant plugin install vagrant-hostmanager
|
|
|
|
cd ${CURRENT_DIRECTORY}
|
|
|
|
git clone https://github.com/pterodactyl/panel.git code/panel
|
|
git clone https://github.com/pterodactyl/documentation.git code/documentation
|
|
git clone https://github.com/pterodactyl/wings.git code/wings
|
|
|
|
mkdir -p .data/certificates
|
|
|
|
mkcert -install
|
|
mkcert pterodactyl.test '*.pterodactyl.test'
|
|
|
|
mv *pterodactyl.test*-key.pem .data/certificates/pterodactyl.test-key.pem
|
|
mv *pterodactyl.test*.pem .data/certificates/pterodactyl.test.pem
|
|
cp "$(mkcert -CAROOT)/rootCA.pem" .data/certificates/root_ca.pem
|
|
|
|
# sudo gem install docker-sync
|
|
# docker-sync start
|