I use this image: dperson/samba
The image is defining it\'s own entrypoint and I do not want to override it.
I need to pass arguments to the entrypoint, easy
You can use docker-compose run instead of docker-compose up and tack the arguments on the end. For example:
docker-compose run dperson/samba arg1 arg2 arg3
If you need to connect to other docker containers, use can use --service-ports option:
docker-compose run --service-ports dperson/samba arg1 arg2 arg3