Files
temporalio-docker-compose/docker-compose-cass.yml
Ruslan c66f5230bf Set Temporal CLI address env variable (#177)
* Set Temporal CLI address env variable

* update k8s images
2023-06-30 16:26:13 -04:00

56 lines
1.3 KiB
YAML

version: "3.5"
services:
cassandra:
container_name: temporal-cassandra
image: cassandra:${CASSANDRA_VERSION}
networks:
- temporal-network
ports:
- 9042:9042
volumes:
- /var/lib/cassandra
temporal:
container_name: temporal
depends_on:
- cassandra
environment:
- CASSANDRA_SEEDS=cassandra
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development-cass.yaml
image: temporalio/auto-setup:${TEMPORAL_VERSION}
networks:
- temporal-network
ports:
- 7233:7233
volumes:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
labels:
kompose.volume.type: configMap
temporal-admin-tools:
container_name: temporal-admin-tools
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CLI_ADDRESS=temporal:7233
image: temporalio/admin-tools:${TEMPORAL_VERSION}
networks:
- temporal-network
stdin_open: true
tty: true
temporal-ui:
container_name: temporal-ui
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
image: temporalio/ui:${TEMPORAL_UI_VERSION}
networks:
- temporal-network
ports:
- 8080:8080
networks:
temporal-network:
driver: bridge
name: temporal-network