2
0

add: docker env contain payment module

This commit is contained in:
2024-11-28 16:24:48 +08:00
parent 8c0032e569
commit ac8d3c5bee
7 changed files with 138 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ port(){
firewall-cmd --add-port=9201/tcp --permanent
firewall-cmd --add-port=9202/tcp --permanent
firewall-cmd --add-port=9203/tcp --permanent
firewall-cmd --add-port=9300/tcp --permanent
firewall-cmd --add-port=9300-9399/tcp --permanent
service firewalld restart
}
@@ -31,12 +31,12 @@ base(){
# 启动程序模块(必须)
modules(){
docker-compose up -d wfc-nginx wfc-gateway wfc-auth wfc-modules-system wfc-modules-user
docker-compose up -d wfc-nginx wfc-gateway wfc-auth wfc-modules-system wfc-modules-user wfc-modules-payment
}
# 启动程序模块(后端)
backend(){
docker-compose up -d wfc-gateway wfc-auth wfc-modules-system wfc-modules-user
docker-compose up -d wfc-gateway wfc-auth wfc-modules-system wfc-modules-user wfc-modules-payment
}
# 启动程序模块(前端)