I am using Azure Pipeline to automated build my Yocto Project in a docker container. Here is snapshot of the code syntax (Azure Pipeline .yml file)
trigger:
- main
resources:
containers:
- container: abc-build
image: my-docker-registry-address
options:
volumes: /mnt:/mnt
But it has error while executing, Please refer to below :
I fail to do mounting between my build server and docker container, both are Linux environment. Do you know how to fix it ?