mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
27 lines
617 B
YAML
27 lines
617 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
image: kartoza/postgis:9.5-2.2
|
|
environment:
|
|
- ALLOW_IP_RANGE="172.18.0.0/16"
|
|
|
|
mssql:
|
|
image: microsoft/mssql-server-linux:2017-latest
|
|
environment:
|
|
ACCEPT_EULA: Y
|
|
SA_PASSWORD: <YourStrong!Passw0rd>
|
|
|
|
qgis-deps:
|
|
tty: true
|
|
image: qgis_image
|
|
volumes:
|
|
- ${TRAVIS_BUILD_DIR}:/root/QGIS
|
|
- ${TRAVIS_BUILD_DIR}/.docker/qgis_resources/supervisor:/etc/supervisor
|
|
- ${TRAVIS_BUILD_DIR}/.docker/qgis_resources/test_runner:/usr/bin/test_runner
|
|
links:
|
|
- postgres
|
|
- mssql
|
|
env_file:
|
|
- docker-variables.env
|
|
|