mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? Remove the version field from all the docker compose yaml files ## Why? I followed the dev [doc](https://github.com/temporalio/temporal/blob/main/develop/docker-compose/README.md) to setup the local env, and it showed the warning message like `WARN[0003] /xxxx/temporal/develop/docker-compose/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion` Some discussions are [here](https://forums.docker.com/t/docker-compose-yml-version-is-obsolete/141313) and the `version` field was confirmed to be deprecated. So I want to raise this PR to remove this deprecated field.  ## How did you test it? N/A ## Potential risks N/A ## Documentation N/A ## Is hotfix candidate? No Co-authored-by: Roey Berman <roey@temporal.io>
17 lines
384 B
YAML
17 lines
384 B
YAML
# Overrides for CDC for MacOS (Darwin) users.
|
|
services:
|
|
temporal-ui-standby:
|
|
environment:
|
|
- TEMPORAL_ADDRESS=host.docker.internal:8233
|
|
ports:
|
|
- "8081:8081"
|
|
networks:
|
|
- temporal-dev-network
|
|
temporal-ui-other:
|
|
environment:
|
|
- TEMPORAL_ADDRESS=host.docker.internal:9233
|
|
ports:
|
|
- "8082:8082"
|
|
networks:
|
|
- temporal-dev-network
|