i have several containers in my docker-compose.yml before docker-compose one of my container run as 
docker run -p 8080:8080 -i imagename:tag 
i have added this container in my docker-compose like this 
myservice:
   image: imagename:tag
   ports:
     - "8080:8080"
now my question is how can i add the -i in docker-compose i do understand that we can do something like docker-compose up -i but i am using sbt-docker-compose
for docker-compose up -> they provide dockerComposeUp but when i try to add 
dockerComposeUp -i it ends up with error 
[error] Expected '-useStaticPorts'
[error] dockerComposeUp -i
[error]