| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ### 中台服务
- .PHONY: cloud-gateway
- cloud-gateway:
- make -C cloud-gateway docker-build
- .PHONY: central-auth
- central-auth:
- make -C central-auth docker-build
- .PHONY: central-conf
- central-conf:
- make -C central-conf docker-build
- .PHONY: central-pay
- central-pay:
- make -C central-pay docker-build
- .PHONY: central-security
- central-security:
- make -C central-security docker-build
- .PHONY: central-user
- central-user:
- make -C central-user docker-build
- .PHONY: central-value
- central-value:
- make -C central-value docker-build
- .PHONY: central-admin
- central-admin:
- make -C central-admin docker-build
- .PHONY: central-statistics
- central-statistics:
- make -C central-statistics docker-build
- ### 业务服务
- .PHONY: project-charge
- project-charge:
- make -C project-charge docker-build
- .PHONY: project-playlet
- project-playlet:
- make -C project-playlet docker-build
- .PHONY: project-recover
- project-recover:
- make -C project-recover docker-build
- .PHONY: project-warn
- project-warn:
- make -C project-warn docker-build
- ### 洗悦家服务
- .PHONY: project-wash
- project-wash:
- make -C project-wash docker-build
- ### 启动服务的本地docker compose
- .PHONY: docker-compose-up
- docker-compose-up:
- docker-compose up -d
- # 停止服务 删除容器
- #docker stop cloud-gateway central-conf central-value project-charge central-auth central-user central-pay central-security central-admin
- #docker rm cloud-gateway central-conf central-value project-charge central-auth central-user central-pay central-security central-admin
|