summaryrefslogtreecommitdiff
path: root/tests/docker-compose-full.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docker-compose-full.yaml')
-rw-r--r--tests/docker-compose-full.yaml46
1 files changed, 0 insertions, 46 deletions
diff --git a/tests/docker-compose-full.yaml b/tests/docker-compose-full.yaml
deleted file mode 100644
index 889f7898..00000000
--- a/tests/docker-compose-full.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
-version: '3.5'
-
-services:
- postgresql:
- container_name: temporal-postgresql
- image: postgres:13.1
- environment:
- POSTGRES_PASSWORD: temporal
- POSTGRES_USER: temporal
- ports:
- - 5432:5432
-
- temporal:
- container_name: temporal
- image: temporalio/auto-setup:1.6.3
- depends_on:
- - postgresql
- environment:
- - DB=postgresql
- - DB_PORT=5432
- - POSTGRES_USER=temporal
- - POSTGRES_PWD=temporal
- - POSTGRES_SEEDS=postgresql
- ports:
- - 7233:7233
-
- temporal-admin-tools:
- container_name: temporal-admin-tools
- image: temporalio/admin-tools:1.6.3
- depends_on:
- - temporal
- environment:
- - TEMPORAL_CLI_ADDRESS=temporal:7233
- stdin_open: true
- tty: true
-
- temporal-web:
- container_name: temporal-web
- image: temporalio/web:1.6.2
- depends_on:
- - temporal
- environment:
- - TEMPORAL_GRPC_ENDPOINT=temporal:7233
- - TEMPORAL_PERMIT_WRITE_API=true
- ports:
- - 8088:8088