I am using a MySQL Docker container where I want to use a Azure File Share. To create an MySQL Docker container I use the following Buildscript.
FROM mysql:5.7
RUN apt-get update && apt-get upgrade && apt-get install sudo
RUN sudo apt install cifs-utils -y
RUN sudo apt-get install curl -y
RUN cd home
RUN mkdir install
RUN cd install
RUN curl curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
When I enter this container, I use the following command selected from the Azure Portal and create a bash script.
When I execute the script, I get this error:
Unable to apply new capability set.
Can you please help me to mount the Azure File Share to Linux !
Many thanks,
Erik