Vu Le
Vu Le
You can try this RUN ( /opt/mssql/bin/sqlservr --accept-eula & ) | grep -q "Service Broker manager has started" \ && /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P Passw0rd -d master -i...
#Dockerfile FROM microsoft/mssql-server-linux ENV SA_PASSWORD=Passw0rd ENV ACCEPT_EULA=Y COPY SqlCmdScript.sql SqlCmdScript.sql RUN(/opt/mssql/bin/sqlservr --accept-eula & ) | grep -q "Service Broker manager has started" && /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'Passw0rd'...
can you run it in a bash shell ?