Files
spring-cloud-stream/spring-cloud-stream-module-launcher/docker-compose.yml
Ilayaperumal Gopinathan 0a927b6711 Update documentation
- update steps to run the `s-c-s-module-launcher` on standalone, docker and lattice
 - update recent changes into readme
 - Fix docker compose to use the common binding name so that `time | log` works

Remove explicit cloud profile for lattice run

Remove tap reference

Remove explicit server.port for docker-compose

Update port mapping for docker run
2015-08-26 14:25:01 -04:00

25 lines
585 B
YAML

redis:
image: redis
timesource:
image: springcloud/stream-module-launcher
links:
- redis
ports:
- "8080:8080"
environment:
SPRING_REDIS_HOST: redis
MODULES: org.springframework.cloud.stream.module:time-source:1.0.0.BUILD-SNAPSHOT
SPRING_CLOUD_STREAM_BINDINGS_OUTPUT: ticktock
logsink:
image: springcloud/stream-module-launcher
links:
- redis
ports:
- "8081:8080"
environment:
SPRING_REDIS_HOST: redis
MODULES: org.springframework.cloud.stream.module:log-sink:1.0.0.BUILD-SNAPSHOT
SPRING_CLOUD_STREAM_BINDINGS_INPUT: ticktock