gz1903/v2board

By gz1903

Updated over 1 year ago

纯净的V2board镜像。一个开源且易于管理V2Ray程序的可视化用户管理系统。

Image
Networking
Security
Web servers
118

10K+

gz1903/v2board repository overview

V2Board system docker for amd64/arm64 machine

Multi-Architecture image supported

Docker Automated buildDocker StarsDocker PullsDocker Image VersionV2BoardOpen Source Lovw
Environment
Nginx 1.20.2
MySQL 5.6.51
PHP 7.3.33
redis 6.2.2
Supervisord 3.4.0

This image can create the required environment of v2board for you, and you can customize the new installation of v2board; Or you can install v2board with one click and use it directly.

Official documents:https://docs.v2board.com

Update log:https://docs.v2board.com/CHANGELOG.html

container volume map

you need to map container path to your host machine for persistent data storage./usr/local/src

How to use this image
Example(1.7.4)

AMD64 or arm64:

docker run -d \
--name=v2board \
--privileged=true \
--restart always \
-v /usr/local/v2board:/usr/local/src \
-p 80:80 \
gz1903/v2board:latest
Background management interface
http(s)://Your site/v2boards

Enter the management panel, and you can modify your password in the user center.

Account password
MySQL_Default_USERROOT
MySQL_Default_PASS[email protected]
V2Board_Admin_USER[email protected]
V2Board_Admin_PASS[email protected]
How to extend this image
Environment profile

Nginx_conf: /etc/nginx/

Nginx_html:/usr/share/nginx/html/v2board/

PHP_ini:/etc/php.ini

MySQL_conf:/etc/my.cnf

MySQL_date:/var/lib/mysql

MySQL_log:/var/log/mysqld.log

MySQL_Database:v2board

Supervisord_ini:/etc/supervisord.d/v2board.ini

Reinstall(Custom version)
docker run -d \
--name=v2board \
--privileged=true \
--restart always \
-v /usr/local/v2board:/usr/share/nginx/html/v2board \
-p 80:80 \
gz1903/v2board:latest

The latest version has the operating environment and requirements required for the v2board system.

Interact
docker exec -it v2board /bin/bash
Modify database password
mysqladmin -u root [email protected] password  "new_passwd"

new_passwd:You need to change your new password,Please customize the new password

Create a new database
mysql -uroot -pnew_passwd -e "CREATE DATABASE newdatabase CHARACTER SET utf8 COLLATE utf8_general_ci;"

new_passwd:You need to change your new password,Please customize the new password

newdatabase:The name of the new database you need to create,Please customize the new database

Delete Cache
rm -rf /usr/share/nginx/html/v2board
Get the new version of v2board
git clone https://github.com/v2board/v2board.git /usr/share/nginx/html/v2board/
Install
cd /usr/share/nginx/html/v2board && sh /usr/share/nginx/html/v2board/init.sh

To execute the installation script, please enter customized information as prompted to install

Give v2board permission
chmod -R 777 /usr/share/nginx/html/v2board
Restart queue
supervisorctl restart v2board

Tag summary

Content type

Image

Digest

sha256:53c49f16b

Size

465 MB

Last updated

over 1 year ago

docker pull gz1903/v2board