Is it somehow possible to remove stuff like the `w...
# docker
m
Is it somehow possible to remove stuff like the
webdriver
completely from a project? We don't specify anything about that in our
deploy.yml
, but there is still an entry for that in the
docker-compose.yml
and I also see that service in the output of several
docker/sdk
commands. (Background: We use the docker-sdk for integration tests in our CI pipeline and I'd like to remove as much clutter as possible)
w
Probably
Copy code
service:
    webdriver: ~
Should do the trick: https://documentation.spryker.com/docs/deploy-file-reference-10
m
Thanks, I'll try this out 👍