MsSQL (Microsoft SQL Server) Docker Compose File
version: '3' | |
services: | |
mssql-server-linux: | |
image: microsoft/mssql-server-linux:latest | |
volumes: | |
- mssql-server-linux-data:/var/opt/mssql/data | |
environment: | |
- ACCEPT_EULA=Y | |
- SA_PASSWORD=${SQLSERVER_SA_PASSWORD:-yourStrong(!)Password} | |
ports: | |
- "14333:1433" | |
volumes: | |
mssql-server-linux-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
on MsSQL, user password has to provide some conditions (contain special char, upper/lower case etc.). you can define password something like "123456789" or "root". FYI