So imagine this command:
docker compose -f docker/docker-compose.yml run \ --rm --entrypoint "" \ my-service and something like this for docker/docker-compose.yml:
version: '3.9' services: my-service: depends_on: other-service ... other-service: ... When I run the command both services come up. But it seems, that both have their entrypoint overridden with "". Is that possible? And if so, how can i archive that only my-services entrypoint gets overridden?
The docs only state:
--entrypoint Override the entrypoint of the image