chore(docker): explicitly override ports to prevent merging

Update `docker-compose.override.yml` to use the `!override` tag on the `ports` configuration for `message-queue`, `database`, and `infrahub-server`.

This change ensures that Docker Compose replaces the ports list rather than merging it with the base configuration, strictly preventing these services from exposing ports.
This commit is contained in:
Damien
2026-02-05 11:36:39 +01:00
parent 55836f2e3b
commit 1d393a1341

View File

@@ -18,13 +18,13 @@ services:
# === Infrahub === # === Infrahub ===
message-queue: message-queue:
ports: ports: !override
[] []
database: database:
ports: ports: !override
[] []
infrahub-server: infrahub-server:
ports: ports: !override
[] []
volumes: volumes: