would like to check if my understanding is correct...
# getting-started
b
would like to check if my understanding is correct, for the docker/dev.sh script, it will pull docker images with the #debug tag for containers specified in docker-compose.dev.yml? I got confused because I went to Docker hub and was unable to find any images when i searched by debug tag. Just did a docker-compose pull and it returned errors for all the debug images
g
The
dev.sh
builds a bit locally, but primarily works by mounting your local volumes into the containers
You’ve got to make sure that you’ve run a gradle build before using the dev.sh script
The image
debug
tags are just to make sure that it doesn’t pull from docker hub
b
ah i see
will try again