Skip to content

Commit

Permalink
have multiple tcp/ip drivers in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
openwms committed May 31, 2017
1 parent f196687 commit ed49a0e
Show file tree
Hide file tree
Showing 7 changed files with 118 additions and 2 deletions.
File renamed without changes.
9 changes: 9 additions & 0 deletions conf/tcpip-carton2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
owms:
tenant: ZILE
driver:
server:
port: 30000
so-timeout: 300000
so-receive-buffer-size: 160
so-send-buffer-size: 160
routing-service-name: routing-service # is default
9 changes: 9 additions & 0 deletions conf/tcpip-cartonconv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
owms:
tenant: ZILE
driver:
server:
port: 30000
so-timeout: 300000
so-receive-buffer-size: 160
so-send-buffer-size: 160
routing-service-name: routing-service # is default
9 changes: 9 additions & 0 deletions conf/tcpip-palett1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
owms:
tenant: ZILE
driver:
server:
port: 30000
so-timeout: 300000
so-receive-buffer-size: 160
so-send-buffer-size: 160
routing-service-name: routing-service # is default
9 changes: 9 additions & 0 deletions conf/tcpip-palett2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
owms:
tenant: ZILE
driver:
server:
port: 30000
so-timeout: 300000
so-receive-buffer-size: 160
so-send-buffer-size: 160
routing-service-name: routing-service # is default
9 changes: 9 additions & 0 deletions conf/tcpip-palettconv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
owms:
tenant: ZILE
driver:
server:
port: 30000
so-timeout: 300000
so-receive-buffer-size: 160
so-send-buffer-size: 160
routing-service-name: routing-service # is default
75 changes: 73 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,85 @@ services:
owms.eureka.url: http://user:sa@srv:8761


tcp-palett:
tcp-palettconv:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-palett
hostname: tcp-palettconv
ports:
- "30000:30000"
environment:
spring.application.name: tcpid-palettconv
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
owms.eureka.url: http://user:sa@srv:8761

tcp-palett1:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-palett1
ports:
- "30001:30001"
environment:
spring.application.name: tcpid-palett1
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
owms.eureka.url: http://user:sa@srv:8761

tcp-palett2:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-palett2
ports:
- "30002:30002"
environment:
spring.application.name: tcpid-palett2
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
owms.eureka.url: http://user:sa@srv:8761

tcp-cartonconv:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-cartonconv
ports:
- "30003:30003"
environment:
spring.application.name: tcpid-cartonconv
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
owms.eureka.url: http://user:sa@srv:8761

tcp-carton1:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-carton1
ports:
- "30004:30004"
environment:
spring.application.name: tcpid-carton1
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
owms.eureka.url: http://user:sa@srv:8761

tcp-carton2:
# build: ../../openwms/org.openwms.common.comm
image: "openwms/org.openwms.common.comm:1.0.0.1"
restart: on-failure:10
hostname: tcp-carton2
ports:
- "30005:30005"
environment:
spring.application.name: tcpid-carton2
spring.cloud.config.username: user
spring.cloud.config.password: sa
spring.zipkin.base-url: http://tracing:9411/
Expand Down

0 comments on commit ed49a0e

Please sign in to comment.