Hi, I have a volume I created via my dockerfile and when I run docker locally I’m able to see it. I’m also using Nomad to manage containers but when I run it, it does not get linked to the volume that was created in the docker file. How to I link it or mount it in docker, and example will be very helpful. Thanks in advance.
In Dockerfile:
VOLUME abc:/data/bamboo2/bamboo-data
In Nomad file:
volumes = [
#Named volumes created in corresponding docker file outside nomad.
"abc:/data/bamboo2/bamboo-data",
]