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
The command clause does work as @Karthik says above.
command
As a simple example, the following service will have a -inMemory added to its ENTRYPOINT when docker-compose up is run.
-inMemory
ENTRYPOINT
docker-compose up
version: '2' services: local-dynamo: build: local-dynamo image: spud/dynamo command: -inMemory