2017-08-05 00:03:33 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: kartoza/postgis:9.5-2.2
|
2017-08-08 16:21:17 +02:00
|
|
|
environment:
|
|
|
|
- ALLOW_IP_RANGE="172.18.0.0/16"
|
2017-08-05 00:03:33 +02:00
|
|
|
|
2018-10-09 09:01:50 +10:00
|
|
|
mssql:
|
|
|
|
image: microsoft/mssql-server-linux:2017-latest
|
|
|
|
environment:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
SA_PASSWORD: <YourStrong!Passw0rd>
|
|
|
|
|
2017-08-15 08:45:13 +02:00
|
|
|
qgis-deps:
|
2017-08-08 16:21:17 +02:00
|
|
|
tty: true
|
2019-03-07 13:08:35 +01:00
|
|
|
image: qgis_image
|
2017-08-05 00:03:33 +02:00
|
|
|
volumes:
|
|
|
|
- ${TRAVIS_BUILD_DIR}:/root/QGIS
|
|
|
|
links:
|
|
|
|
- postgres
|
2018-10-09 09:01:50 +10:00
|
|
|
- mssql
|
2019-03-07 14:55:08 +01:00
|
|
|
env_file:
|
|
|
|
- docker-variables.env
|
|
|
|
|