{"id":19280863,"url":"https://github.com/arthur-arslanov/bedrock-admin-panel","last_synced_at":"2025-04-22T01:30:47.341Z","repository":{"id":44202118,"uuid":"283844996","full_name":"arthur-arslanov/bedrock-admin-panel","owner":"arthur-arslanov","description":"Beta!","archived":false,"fork":false,"pushed_at":"2022-02-11T02:47:57.000Z","size":11161,"stargazers_count":22,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-26T06:07:57.261Z","etag":null,"topics":["docker","php","php7","psr-7"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arthur-arslanov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-30T18:09:40.000Z","updated_at":"2024-08-24T07:53:53.000Z","dependencies_parsed_at":"2022-08-20T00:31:18.262Z","dependency_job_id":null,"html_url":"https://github.com/arthur-arslanov/bedrock-admin-panel","commit_stats":null,"previous_names":["arthur-arslanov/bedrock-admin-panel","arslanoov/bedrock-admin-panel"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arthur-arslanov%2Fbedrock-admin-panel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arthur-arslanov%2Fbedrock-admin-panel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arthur-arslanov%2Fbedrock-admin-panel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arthur-arslanov%2Fbedrock-admin-panel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arthur-arslanov","download_url":"https://codeload.github.com/arthur-arslanov/bedrock-admin-panel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250161916,"owners_count":21385007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","php","php7","psr-7"],"created_at":"2024-11-09T21:20:53.042Z","updated_at":"2025-04-22T01:30:46.314Z","avatar_url":"https://github.com/arthur-arslanov.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Bedrock Admin Panel\nAdmin panel for Bedrock Dedicated Server\n\nThis repository uses [LomotHo docker image](https://github.com/LomotHo/minecraft-bedrock)\n\n### Features\n\n* Whitelist manage\n* User roles manage\n* Server settings manage\n* Uploading, regenerating world\n* Backups\n* Logs\n* Server starting, stopping and restarting\n\n##### TODO:\n* Scheduled backups\n* Scheduled restart\n* Flash messages\n* Server exit / login notifications\n* Session authentication\n\n### Install\n\nYou can install panel in 2 commands!\n\nInstead of {{IP}} write your vps (vds) IP (in first command)\n\nFor example:\n\n    sudo sh -c \"echo '80.87.202.253' \u003e\u003e /bedrock-admin-panel/web/server.ip\" \u0026\u0026\n    \nInstead of:\n\n    sudo sh -c \"echo '{{IP}}' \u003e\u003e /bedrock-admin-panel/web/server.ip\" \u0026\u0026\n\n    \nInstruction:\n1. Buy vds/vps on Ubuntu (required) 18.04 (recommended and tested on this version) with KVM (required) virtualization\n2. Connect by SSH (for example use [Putty program](https://www.putty.org/))\n3. Execute this commands (RMB to paste and enter to execute in Putty)\n\nFirst command:\n    \n    \n    sudo apt update -y \u0026\u0026\n    sudo apt upgrade -y \u0026\u0026\n    sudo apt -y install software-properties-common \u0026\u0026\n    sudo add-apt-repository ppa:ondrej/php -y \u0026\u0026\n    sudo apt-get update -y \u0026\u0026\n    \n    cd / \u0026\u0026\n    apt install git -y \u0026\u0026\n    git clone https://github.com/Arslanoov/bedrock-admin-panel.git \u0026\u0026\n    cd /bedrock-admin-panel \u0026\u0026\n    \n    apt install docker.io -y \u0026\u0026\n    sudo gpasswd -a ${USER} docker \u0026\u0026\n    sudo service docker restart \u0026\u0026\n    \n    mkdir -p /opt/mcpe-data \u0026\u0026\n    docker run -itd --restart=always --name=mcpe --net=host \\\n      -v /opt/mcpe-data:/data \\\n      lomot/minecraft-bedrock:1.16.100.04 \u0026\u0026\n    \n    apt install docker-compose -y \u0026\u0026\n    apt install make -y \u0026\u0026\n    make init \u0026\u0026\n    \n    mkdir /opt/mcpe-data/backups \u0026\u0026 chmod -R 777 /opt/mcpe-data/backups \u0026\u0026\n    chmod -R 777 /opt/mcpe-data/worlds \u0026\u0026\n    \n    echo 'www-data ALL=NOPASSWD: ALL' | sudo EDITOR='tee -a' visudo \u0026\u0026\n    \n    sudo sh -c \"echo '{{IP}}' \u003e\u003e /bedrock-admin-panel/web/server.ip\" \u0026\u0026\n    \n    sudo apt-get install php7.4 -y \u0026\u0026\n    \n    cd /bedrock-admin-panel/web \u0026\u0026\n    chmod -R 777 var \u0026\u0026\n    docker-compose run --rm php-cli chmod -R 777 /app/data \u0026\u0026\n    cd .. \u0026\u0026\n    docker-compose up -d \u0026\u0026\n    cd web \u0026\u0026\n    php generate.php\n    \n    \nSecond command:\n\n    cd /bedrock-admin-panel \u0026\u0026\n    nohup php -S 0.0.0.0:57152 -t command/ \u003e /dev/null 2\u003e\u00261 \u0026\n    \nDone!\n\nNow copy the link that appeared in putty. For example:\n\n    http://80.87.202.253:8080/admin?key=kRTXY5xMJybCkhKDWIqO3PdonPPWmdRcIB9RJy9MnrjNfMskY69Uj0P7CZf1zsoN\n\n### Change password key\n    \n    cd /bedrock-admin-panel \u0026\u0026 php generate.php\n\n### Images\n\nSome images of admin panel:\n\n\u003cp align=\"center\"\u003e\u003cb\u003eHome page\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/D1UJz6OiSnu2ADK-jaz6Ew.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eWhitelist\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/pwR7_egETC2eafy0VAlNww.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eProperties manage (50% scale)\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/4t57eg8mRS_Y1E-UeBNCXQ.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eWorld manage\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/hljdoWFmSjKh35w_aweaSA.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eBackups\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/kjku2NJdSVq7Xtdw4SIMdA.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eLogs\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/n6MmmNxNRkWiWRapsDIMWg.png\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cb\u003eServer manage\u003c/b\u003e\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://image.prntscr.com/image/JpBHmnlhRMSuV4aiTj7qqQ.png\"\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farthur-arslanov%2Fbedrock-admin-panel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farthur-arslanov%2Fbedrock-admin-panel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farthur-arslanov%2Fbedrock-admin-panel/lists"}