I use GitLab CI Runner, it uses the command:
docker run -d --name postgres postgres:9.4
I want to do something like this:
docker run -d --name postgres --volumes-from postgres_datastore postgres:9.4
But GitLab CI Runner doesn't support any options (-v or --volumes-from)
.
Is there any other way?