|
@@ -0,0 +1,42 @@
|
|
|
+version: "3"
|
|
|
+services:
|
|
|
+ eureka-server:
|
|
|
+ image: diagbotcloud/eureka-server:0.0.1-SNAPSHOT
|
|
|
+ ports:
|
|
|
+ - "8761:8761"
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ config-server:
|
|
|
+ image: diagbotcloud/config-server:0.0.1-SNAPSHOT
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ uaa-service:
|
|
|
+ image: diagbotcloud/uaa-service:0.0.1-SNAPSHOT
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ user-service:
|
|
|
+ image: diagbotcloud/user-service:0.0.1-SNAPSHOT
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ log-service:
|
|
|
+ image: diagbotcloud/log-service:0.0.1-SNAPSHOT
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ monitor-service:
|
|
|
+ image: diagbotcloud/monitor-service:0.0.1-SNAPSHOT
|
|
|
+ ports:
|
|
|
+ - "8766:8766"
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ admin-service:
|
|
|
+ image: diagbotcloud/admin-service:0.0.1-SNAPSHOT
|
|
|
+ ports:
|
|
|
+ - "9998:9998"
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|
|
|
+ gateway-service:
|
|
|
+ image: diagbotcloud/gateway-service:0.0.1-SNAPSHOT
|
|
|
+ ports:
|
|
|
+ - "5050:5050"
|
|
|
+ environment:
|
|
|
+ - spring.profiles.active=dev
|