123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- version: '2'
- services:
- pigx-zookeeper:
- image: zookeeper:3.4.13
- ports:
- - 2181:2181
- restart: always
- pigx-redis:
- image: redis:4.0.10
- ports:
- - 6379:6379
- restart: always
- pigx-eureka:
- build:
- context: ./
- dockerfile: ./pigx-eureka/Dockerfile
- restart: always
- container_name: pigx-eureka
- image: pigx-eureka
- ports:
- - 8761:8761
- pigx-config:
- build:
- context: ./
- dockerfile: ./pigx-config/Dockerfile
- restart: always
- container_name: pigx-config
- image: pigx-config
- pigx-gateway:
- build:
- context: ./
- dockerfile: ./pigx-gateway/Dockerfile
- restart: always
- container_name: pigx-gateway
- image: pigx-gateway
- ports:
- - 9999:9999
- pigx-auth:
- build:
- context: ./
- dockerfile: ./pigx-auth/Dockerfile
- restart: always
- container_name: pigx-auth
- image: pigx-auth
- pigx-upms:
- build:
- context: ./
- dockerfile: ./pigx-upms/pigx-upms-biz/Dockerfile
- restart: always
- container_name: pigx-upms
- image: pigx-upms
- pigx-monitor:
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-monitor/Dockerfile
- restart: always
- image: pigx-monitor
- container_name: pigx-monitor
- ports:
- - 5001:5001
- pigx-daemon:
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-daemon/Dockerfile
- restart: always
- image: pigx-daemon
- container_name: pigx-daemon
- ports:
- - 5002:5002
- pigx-codegen:
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-codegen/Dockerfile
- restart: always
- image: pigx-codegen
- container_name: pigx-codegen
- pigx-activiti:
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-activiti/Dockerfile
- image: pigx-activiti
- container_name: pigx-activiti
- restart: always
- pigx-tx-manager:
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-tx-manager/Dockerfile
- restart: always
- image: pigx-tx-manager
- container_name: pigx-tx-manager
- ports:
- - 5004:5004
- - 9998:9998
|