123456789101112131415161718192021222324252627282930313233343536373839 |
- version: '3.8'
- services:
- config:
- image: zyx42/paragon-config
- restart: always
- registry:
- image: zyx42/paragon-registry
- restart: always
- depends_on:
- - config
- gateway:
- image: zyx42/paragon-gateway
- restart: always
- depends_on:
- - config
- ports:
- - 9000:9000
- auth-service:
- image: zyx42/paragon-auth-service
- restart: always
- depends_on:
- - config
- product-service:
- image: zyx42/paragon-product-service
- restart: always
- depends_on:
- - config
- frontend-client:
- image: zyx42/paragon-frontend-client
- restart: always
- ports:
- - 4200:80
|