Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ### 中台服务
  2. .PHONY: cloud-gateway
  3. cloud-gateway:
  4. make -C cloud-gateway docker-build
  5. .PHONY: central-auth
  6. central-auth:
  7. make -C central-auth docker-build
  8. .PHONY: central-conf
  9. central-conf:
  10. make -C central-conf docker-build
  11. .PHONY: central-pay
  12. central-pay:
  13. make -C central-pay docker-build
  14. .PHONY: central-security
  15. central-security:
  16. make -C central-security docker-build
  17. .PHONY: central-user
  18. central-user:
  19. make -C central-user docker-build
  20. .PHONY: central-value
  21. central-value:
  22. make -C central-value docker-build
  23. .PHONY: central-admin
  24. central-admin:
  25. make -C central-admin docker-build
  26. .PHONY: central-statistics
  27. central-statistics:
  28. make -C central-statistics docker-build
  29. ### 业务服务
  30. .PHONY: project-charge
  31. project-charge:
  32. make -C project-charge docker-build
  33. .PHONY: project-playlet
  34. project-playlet:
  35. make -C project-playlet docker-build
  36. .PHONY: project-recover
  37. project-recover:
  38. make -C project-recover docker-build
  39. .PHONY: project-warn
  40. project-warn:
  41. make -C project-warn docker-build
  42. ### 洗悦家服务
  43. .PHONY: project-wash
  44. project-wash:
  45. make -C project-wash docker-build
  46. ### 启动服务的本地docker compose
  47. .PHONY: docker-compose-up
  48. docker-compose-up:
  49. docker-compose up -d
  50. # 停止服务 删除容器
  51. #docker stop cloud-gateway central-conf central-value project-charge central-auth central-user central-pay central-security central-admin
  52. #docker rm cloud-gateway central-conf central-value project-charge central-auth central-user central-pay central-security central-admin