All Projects → geo-data → Gdal Docker

geo-data / Gdal Docker

A Dockerfile compiling the latest GDAL github checkout with a broad range of drivers

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Gdal Docker

Docker Headless Vnc Container
Collection of Docker images with headless VNC environments
Stars: ✭ 1,176 (+959.46%)
Mutual labels:  ubuntu, docker-image
Docker Spigot
A docker container with spigot, builds spigot.jar on first start
Stars: ✭ 137 (+23.42%)
Mutual labels:  ubuntu, docker-image
Ipxe Buildweb
iPXE Prebuilt binary web interface
Stars: ✭ 119 (+7.21%)
Mutual labels:  ubuntu, docker-image
Psiphon
A multi-functional version of a popular network circumvention tool
Stars: ✭ 169 (+52.25%)
Mutual labels:  ubuntu, docker-image
python3-docker-devenv
Docker Start Guide with Python Development Environment
Stars: ✭ 13 (-88.29%)
Mutual labels:  ubuntu, docker-image
docker-debian-releases
Creates docker images of historic Debian-based distribution releases
Stars: ✭ 19 (-82.88%)
Mutual labels:  ubuntu, docker-image
Dockerfiles
Phalcon Dockerfiles used for internal purposes.
Stars: ✭ 145 (+30.63%)
Mutual labels:  ubuntu, docker-image
docker python-opencv-ffmpeg
Dockerfile containing FFmpeg, OpenCV4 and Python2/3, based on Ubuntu LTS
Stars: ✭ 38 (-65.77%)
Mutual labels:  ubuntu, docker-image
Docker Dhcpd
Containerized version of ISC DHCP server based on latest Ubuntu LTS
Stars: ✭ 99 (-10.81%)
Mutual labels:  ubuntu, docker-image
Postinstall
💻 Bash Script to automate post-installation steps
Stars: ✭ 104 (-6.31%)
Mutual labels:  ubuntu
Transmission Blocklist
torrent blocklist base on : https://gist.github.com/shmup/29566c5268569069c256
Stars: ✭ 109 (-1.8%)
Mutual labels:  ubuntu
Vimix Gtk Themes
Vimix is a flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell etc.
Stars: ✭ 1,384 (+1146.85%)
Mutual labels:  ubuntu
Web Client
Generic Linked Data browser and UX component framework. Apache license.
Stars: ✭ 105 (-5.41%)
Mutual labels:  docker-image
Optimized Python Docker
Optimized Python 3.x images for Docker
Stars: ✭ 109 (-1.8%)
Mutual labels:  docker-image
Jenkins
Docker Jenkins Swarm-Ready with HTTPS
Stars: ✭ 103 (-7.21%)
Mutual labels:  docker-image
Ubuntu On Steroids
Developer setup & configuration guide for Ubuntu.
Stars: ✭ 111 (+0%)
Mutual labels:  ubuntu
Ansible Postfix
Ansible role to set up postfix in Debian-like systems
Stars: ✭ 102 (-8.11%)
Mutual labels:  ubuntu
Docker Light Baseimage
A docker image to build reliable single process or multiple process images quickly 🐳 ✨
Stars: ✭ 102 (-8.11%)
Mutual labels:  docker-image
5minutes
First 5 minutes on new servers. Secure your servers with single command - Ansible playbook
Stars: ✭ 111 (+0%)
Mutual labels:  ubuntu
Docker Atom Editor
Run the Atom editor within a Docker container
Stars: ✭ 110 (-0.9%)
Mutual labels:  docker-image

GDAL Docker Images

NB: As of GDAL version 1.11.2 the image has been renamed from homme/gdal to geodata/gdal.

This is an Ubuntu derived image containing the Geospatial Data Abstraction Library (GDAL) compiled with a broad range of drivers. The build process is based on that defined in the GDAL TravisCI tests.

Each branch in the git repository corresponds to a supported GDAL version (e.g. 1.11.2) with the master branch following GDAL master. These branch names are reflected in the image tags on the Docker Index (e.g. branch 1.11.2 corresponds to the image geodata/gdal:1.11.2).

Usage

Running the container without any arguments will by default output the GDAL version string as well as the supported raster and vector formats:

docker run geodata/gdal

The following command will open a bash shell in an Ubuntu based environment with GDAL available:

docker run -t -i geodata/gdal /bin/bash

You will most likely want to work with data on the host system from within the docker container, in which case run the container with the -v option. Assuming you have a raster called test.tif in your current working directory on your host system, running the following command should invoke gdalinfo on test.tif:

docker run -v $(pwd):/data geodata/gdal gdalinfo test.tif

This works because the current working directory is set to /data in the container, and you have mapped the current working directory on your host to /data.

Note that the image tagged latest, GDAL represents the latest code at the time the image was built. If you want to include the most up-to-date commits then you need to build the docker image yourself locally along these lines:

docker build -t geodata/gdal:local git://github.com/geo-data/gdal-docker/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].