[fix](docker-compose) Fix docker-compose subnet conflicts by assigning unique subnets #60158
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR includes two improvements to the docker-compose infrastructure:
Changes
1. Cleanup unused docker-compose (commit: 61631b9)
Removed unused and unmaintained docker-compose environments:
spark/spark.yaml,tools/*(format conversion tools)trino/*.tpl,trino/scripts/*(all config and scripts)Total: 12 files deleted, 851 lines removed
Rationale: These docker-compose environments were:
The
run-thirdparties-docker.shscript was also updated to remove spark/trino references.2. Fix subnet conflicts (commit: 54b3fd3)
Added fixed subnets to remaining docker-compose networks:
docker/thirdparties/docker-compose/iceberg-rest/docker-compose.yaml.tpl${CONTAINER_UID}iceberg-rest172.30.80.0/24docker/thirdparties/docker-compose/polaris/docker-compose.yaml.tpl${CONTAINER_UID}polaris172.31.80.0/24Rationale: Previously, docker-compose networks relied on Docker's default subnet assignment, which could cause:
Impact