Volumes with docker-runner services

I want to run services with --volumes-from option.
Configuration file:
services: - "postgres:9.4"
I want something like this:
services: - "postgres:9.4" --volumes-from pg_data
How can i do this?

Thanks.