I am trying to start up a confluence instance with docker, using Microsoft SQLServer as the database. I keep getting the below error : "Cannot open database". How can I resolve this error?
sql-server-express:
image: mcr.microsoft.com/mssql/server:2019-latest
platform: linux/amd64
container_name: sql-server-express
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: *********
MSSQL_PID: Express
expose:
- "1433:1433"