fix(compose): remove non-standard !override tags from ports
Remove the `!override` custom YAML tag from the `ports` configuration for the `message-queue`, `database`, and `infrahub-server` services. This ensures compatibility with standard Docker Compose parsers while maintaining the behavior of disabling port mappings by providing an empty list.
This commit is contained in:
@@ -18,13 +18,13 @@ services:
|
|||||||
|
|
||||||
# === Infrahub ===
|
# === Infrahub ===
|
||||||
message-queue:
|
message-queue:
|
||||||
ports: !override
|
ports:
|
||||||
[]
|
[]
|
||||||
database:
|
database:
|
||||||
ports: !override
|
ports:
|
||||||
[]
|
[]
|
||||||
infrahub-server:
|
infrahub-server:
|
||||||
ports: !override
|
ports:
|
||||||
[]
|
[]
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user