Docker-compose up, problem on ubuntu 15.04

I need to do manually, in Linux command line, what Visual Studio 2017 does automatically when creating Docker image from my solution (asp.net core web application). Command to build code from scratch should be:

docker-compose -f "docker-compose.yml" -f "docker-compose.override.yml" -f "docker-compose.vs.release.yml" -p dockercompose32 up --build -d

But it doesn’t work, I get docker-compose --help like text instead of execution of the command.
I tried also:

export COMPOSE_FILE="docker-compose.yml:docker-compose.override.yml:docker-compose.vs.release.yml"
export COMPOSE_PROJECT_NAME=dockercompose32
docker-compose pull
docker-compose build
docker-compose up -d

and after docker-compose pull i get an error ERROR: [Errno 2] No such file or directory: u'./docker-compose.yml:docker-compose.override.yml:docker-compose.vs.release.yml'