Use command bt 14 View panel default info
1.5K
codepromax24/aapanel Docker ImageThe codepromax24/aapanel:latest Docker image provides an easy and convenient way to deploy aaPanel, a powerful web hosting control panel, within a Docker container. This image is designed to simplify the setup and management of aaPanel, allowing users to host and manage websites, databases, and various server services in a streamlined environment.
11616 for the aaPanel web interface for panel management) so users can access and manage their hosting environment via a browser.docker run -d -p 11616:11616-p 90-99:80-89 --name aapanel -v aapanel_data:/www/server/panel codepromax24/aapanel:latest
docker run -d: Runs the container in detached mode (in the background).-p 11616:11616: Maps port 11616 on the host to port 11616 inside the container (you can access the aaPanel interface or services on this port).-p 90-99:80-89: Maps ports 80-89 inside the container to ports 90-99 on the host (used to expose aaPanel's internal ports in a range).--name aapanel: Names the container aapanel for easier reference.-v aapanel_data:/www/server/panel: Binds the Docker volume aapanel_data to the /www/server/panel directory inside the container, ensuring that all panel data is stored in the volume, preserving data across container restarts.codepromax24/aapanel:latest: The Docker image being used to deploy aaPanel.Create the Docker Volume (if not already created):
docker volume create aapanel_data
Run the Container: Copy and paste the command provided above to run the container.
Access aaPanel: After the container is running, you can access the aaPanel web interface at:
http://<your-server-ip>:11616
The additional port mappings (90-99:80-89) allow you to access various services exposed by aaPanel on different ports within that range.
aaPanel Internet Address: https://publick-ip:11616/51274a6b aaPanel Internal Address: https://server-ip:11616/51274a6b username: jntr1zsa password: d059a204
Monitor and Manage the Container:
docker logs aapanel
docker stop aapanel
docker start aapanel
By using this setup, all data related to aaPanel will be stored persistently in the aapanel_data volume, and you'll have port mappings as specified for easy access.
The codepromax24/aapanel:latest Docker image offers a quick and flexible solution for deploying aaPanel in a Dockerized environment. It is an excellent choice for users who need a powerful yet easy-to-manage web hosting control panel with persistent data storage, all while benefiting from the isolation and portability of Docker containers.
Content type
Image
Digest
sha256:8a47aaba9…
Size
624.9 MB
Last updated
almost 2 years ago
docker pull codepromax24/aapanel