summaryrefslogtreecommitdiff
path: root/tests/docker-compose.yaml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-26 11:52:03 +0300
committerGitHub <[email protected]>2021-01-26 11:52:03 +0300
commite2266b80db47444ba5858c736833a8a81b1361ad (patch)
tree37e06810352752f88032f7d0eadb554fa18b98da /tests/docker-compose.yaml
parentfae4711e3548bfd2e34f13aabfaab6a5b4e317c6 (diff)
parenta392d962508e1bc9e497c8c4ef021425bc2c67c2 (diff)
Merge pull request #502 from spiral/plugin/temporalv2.0.0-beta12
plugin(temporal): Add temporal plugins set to the RR2
Diffstat (limited to 'tests/docker-compose.yaml')
-rw-r--r--tests/docker-compose.yaml34
1 files changed, 33 insertions, 1 deletions
diff --git a/tests/docker-compose.yaml b/tests/docker-compose.yaml
index fd1a48bf..fa1070e1 100644
--- a/tests/docker-compose.yaml
+++ b/tests/docker-compose.yaml
@@ -4,4 +4,36 @@ services:
memcached:
image: memcached:latest
ports:
- - "0.0.0.0:11211:11211" \ No newline at end of file
+ - "0.0.0.0:11211:11211"
+ cassandra:
+ image: cassandra:3.11
+ ports:
+ - "9042:9042"
+ temporal:
+ image: temporalio/auto-setup:${SERVER_TAG:-1.1.0}
+ ports:
+ - "7233:7233"
+ volumes:
+ - ${DYNAMIC_CONFIG_DIR:-../config/dynamicconfig}:/etc/temporal/config/dynamicconfig
+ environment:
+ - "CASSANDRA_SEEDS=cassandra"
+ - "DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml"
+ depends_on:
+ - cassandra
+ temporal-admin-tools:
+ image: temporalio/admin-tools:${SERVER_TAG:-1.1.0}
+ stdin_open: true
+ tty: true
+ environment:
+ - "TEMPORAL_CLI_ADDRESS=temporal:7233"
+ depends_on:
+ - temporal
+ temporal-web:
+ image: temporalio/web:${WEB_TAG:-1.5.0}
+ environment:
+ - "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
+ - "TEMPORAL_PERMIT_WRITE_API=true"
+ ports:
+ - "8088:8088"
+ depends_on:
+ - temporal \ No newline at end of file