mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-03 00:04:47 -04:00
26 lines
484 B
YAML
26 lines
484 B
YAML
version: '3'
|
|
|
|
services:
|
|
mssql:
|
|
image: mcr.microsoft.com/mssql/server:2022-latest
|
|
environment:
|
|
ACCEPT_EULA: Y
|
|
MSSQL_SA_PASSWORD: QGIStestSQLServer1234
|
|
ports:
|
|
- 1433:1433
|
|
|
|
qgis-deps:
|
|
tty: true
|
|
image: qgis3-build-deps-binary-image
|
|
volumes:
|
|
- ${QGIS_WORKSPACE}:/root/QGIS
|
|
links:
|
|
- mssql
|
|
env_file:
|
|
- docker-variables.env
|
|
environment:
|
|
- LANG=C.UTF-8
|
|
- LC_ALL=en_US.UTF-8
|
|
cap_add:
|
|
- NET_ADMIN
|