This directory contains a number of Dockerfile for different configurations.
Each directory contains a ./build.sh
for convenient building of the image.
Note: the mention of the overall licensing terms of the GDAL build is to the best of our knowledge and not guaranteed. Users should check by themselves.
- Image size: ~ 59 MB
- Raster drivers: ultrasmall + built-in + SQLite-based ones + network-based ones
- Vector drivers: ultrasmall + built-in + most XML-based ones + network-based ones + PostgreSQL
- Using internal libtiff and libgeotiff
- External libraries enabled: ultrasmall + libexpat, libpq, libssl
- No GDAL Python
- Base PROJ grid package
- Overall licensing terms of the GDAL build: permissive (X/MIT, BSD style, Apache, etc..)
- Image size: ~ 242 MB
- Raster drivers: small + netCDF, HDF5, BAG
- Vector drivers: small + Spatialite, XLS
- Using internal libtiff and libgeotiff
- External libraries enabled: small + libgeos, libhdf5, libhdf5, libkea, libnetcdf, libfreexl, libspatialite, libxml2, libpoppler, openexr, libheif, libdeflate
- GDAL Python (Python 3.9)
- Base PROJ grid package
- Overall licensing terms of the GDAL build: copy-left (GPL) + LGPL + permissive
- Image size: ~ 280 MB
- Raster drivers: all built-in + JPEG + PNG + JP2OpenJPEG + WEBP +SQLite-based ones + network-based ones
- Vector drivers: all built-in + XML based ones + SQLite-based ones + network-based ones + PostgreSQL
- Using internal libtiff and libgeotiff
- External libraries enabled: libsqlite3, libproj, libcurl, libjpeg, libpng, libwebp, libzstd, libexpat, libxerces-c, libpq, libssl, libgeos
- GDAL Python (Python 3.8)
- Base PROJ grid package
- Overall licensing terms of the GDAL build: LGPL + permissive (X/MIT, BSD style, Apache, etc..)
- Image size: ~ 1.48 GB
- Raster drivers: all based on almost all possible free and open-source dependencies
- Vector drivers: all based on almost all possible free and open-source dependencies
- Using internal libtiff and libgeotiff
- External libraries enabled: small + libnetcdf, libhdf4, libhdf5, libtiledb, libkea, mongocxx 3.4, libspatialite, unixodbc, libxml2, libcfitsio, libmysqlclient, libkml, libpoppler, pdfium, openexr, libheif, libdeflate
- GDAL Python (Python 3.8)
- All PROJ grid packages
- Overall licensing terms of the GDAL build: copy-left (GPL) + LGPL + permissive
Pull the required image and then run passing the gdal program you want to execute as a docker run command. Bind a volume from your local file system to the docker container to run gdal programs that accept a file argument. For example, binding -v /home:/home
on Linux or -v /Users:/Users
on Mac will allow you to reference files in your home directory by passing their full path. Use the docker --rm
option to automatically remove the container when the run completes.
docker pull osgeo/gdal:alpine-small-latest
docker run --rm -v /home:/home osgeo/gdal:alpine-small-latest gdalinfo $PWD/my.tif
Tagged images of recent past releases are available. The last ones (at time of writing) are for GDAL 3.3.1 and PROJ 8.1.0, for linux/amd64 and linux/arm64:
- osgeo/gdal:alpine-ultrasmall-3.3.1
- osgeo/gdal:alpine-small-3.3.1
- osgeo/gdal:alpine-normal-3.3.1
- osgeo/gdal:ubuntu-small-3.3.1
- osgeo/gdal:ubuntu-full-3.3.1
Each directory contains a build.sh
shell script that supports building images
for multiple platforms using an experimental feature called Docker BuildKit.
BuildKit CLI looks like docker buildx build
vs. docker build
and allows images to build not only for the architecture and operating system
that the user invoking the build happens to run, but for others as well.
There is a small setup process depending on your operating system. Refer to Preparation toward running Docker on ARM Mac: Building multi-arch images with Docker BuildX.
If you're running Docker for MacOS with an Intel CPU
and you wanted to build the alpine-small
image with support for Raspberry Pi 4,
adding a couple flags when running alpine-small/build.sh
can greatly simplify this process
Use the two script flags in order to leverage BuildKit:
Flag | Description | Arguments |
---|---|---|
--with-multi-arch | Will build using the buildx plugin |
N/A |
--platform | Which architectures to build | linux/amd64,linux/arm64 |
Example
alpine-small/build.sh --with-multi-arch --release --gdal v3.2.0 --proj master --platform linux/arm64,linux/amd64
Override the base image, used to build and run gdal, by setting the environment variable: BASE_IMAGE
Example
BASE_IMAGE="debian:stable" ubuntu-small/build.sh --release --gdal v3.2.0 --proj master
Override the image and repository of the final image by setting the environment variable: TARGET_IMAGE
Example
TARGET_IMAGE="YOU_DOCKER_USERNAME/gdal" alpine-small/build.sh --release --gdal v3.2.0 --proj master