i have pull all the docker images 0.10.4,and i mo...
# getting-started
f
i have pull all the docker images 0.10.4,and i modify the docker-compose-without-neo4j-dugufeng.quickstart.yml 'head' to '0.10.4', then i use docker compose -p datahub -f ./docker-compose-without-neo4j-dugufeng.quickstart.yml up -d start the datahub. why every time i run this, it still pull the images again and again?
✅ 1
b
docker-compose shouldnt pull again if there is a local copy stored. perhaps in
docker image ls
, the full name of the image doesnt match that of the docker-compose file?
f
it is like this, right?
b
why not just remove the parsing and check that it will not attempt to pull gms again:P
f
remove image?
b
i mean remove the parsing expression in the line
image: {DATAHUB_GMS_IMAGE:-linked/datahub-gms}...
and just put image: linkedin/datahub-gms:v0.10.4
f
like this?
ok i understand . i will try.
thank you