1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- version: '2'
- services:
- pigx-redis:
- image: redis:4.0.10
- ports:
- - 6379:6379
- restart: always
- pigx-eureka:
- build:
- context: ./
- dockerfile: ./pigx-eureka/Dockerfile
- restart: always
- ports:
- - 1025:1025
- pigx-config:
- links:
- - pigx-eureka
- build:
- context: ./
- dockerfile: ./pigx-config/Dockerfile
- restart: always
- pigx-gateway:
- links:
- - pigx-eureka
- build:
- context: ./
- dockerfile: ./pigx-gateway/Dockerfile
- restart: always
- ports:
- - 9999:9999
- pigx-auth:
- links:
- - pigx-eureka
- - pigx-redis
- build:
- context: ./
- dockerfile: ./pigx-auth/Dockerfile
- restart: always
- ports:
- - 3000:3000
- pig-upms:
- links:
- - pigx-eureka
- - pigx-redis
- - pigx-gateway
- build:
- context: ./
- dockerfile: ./pigx-upms/pigx-upms-biz/Dockerfile
- restart: always
- pig-monitor:
- links:
- - pigx-eureka
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-monitor/Dockerfile
- restart: always
- ports:
- - 5001:5001
- pig-daemon:
- links:
- - pigx-eureka
- build:
- context: ./
- dockerfile: ./pigx-visual/pigx-daemon/Dockerfile
- restart: always
- ports:
- - 5002:5002
|