You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Debian-based `adminer-mssql` image with Microsoft ODBC Driver 18
and PHP sqlsrv/pdo_sqlsrv extensions for MS SQL Server support.
Includes an `adminer-mssql-encrypt` plugin (enabled by default) that
sets TrustServerCertificate=yes so the image works out of the box
with self-signed certificates common in development environments.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Debian-based image with Microsoft ODBC Driver 18 and PHP `sqlsrv` / `pdo_sqlsrv` extensions.
80
+
81
+
```sh
82
+
docker run \
83
+
--rm \
84
+
-p 8080:80 \
85
+
dockette/adminer:mssql
86
+
```
87
+
88
+
By default, `TrustServerCertificate` is set to `yes` so the image works out of the box with self-signed certificates (common in development). You can control encryption behavior via environment variables:
89
+
90
+
| Variable | Description | Default |
91
+
|---|---|---|
92
+
|`ADMINER_PLUGIN_MSSQL_ENCRYPT`| Set to `0` to disable the encryption plugin | enabled |
93
+
|`ADMINER_MSSQL_ENCRYPT`|`yes`, `no`, or `strict`| not set |
94
+
|`ADMINER_MSSQL_TRUST_CERT`|`yes` or `no`|`yes`|
95
+
75
96
### `dockette/adminer:dg`
76
97
77
98
> Customization for the best database management tool written in PHP, Adminer
0 commit comments