====== MSSQL - Docker ====== ===== Installation ===== name: "database" services: mssql: image: "mcr.microsoft.com/mssql/server:2022-latest" container_name: "mssql" restart: unless-stopped ports: - "1433:1433" volumes: - "mssql:/var/opt/mssql" environment: - "ACCEPT_EULA=Y" - "SA_PASSWORD=QmEySFxpgnX2HzsMaeQtgdG6OPGHEnvB" - "MSSQL_PID=Developer" - "MSSQL_COLLATION=Latin1_General_BIN" volumes: mssql: More information: [[https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-configure-environment-variables?view=sql-server-ver16|learn.microsoft.com: Configure SQL Server settings with environment variables on Linux]]