https://github.com/roblabs/docker-qgis-ubuntu
QGIS graphical user interface running on Ubuntu. Tailored for macOS
https://github.com/roblabs/docker-qgis-ubuntu
docker gdal geospatialpdf qgis ubuntu
Last synced: 2 months ago
JSON representation
QGIS graphical user interface running on Ubuntu. Tailored for macOS
- Host: GitHub
- URL: https://github.com/roblabs/docker-qgis-ubuntu
- Owner: roblabs
- License: mit
- Created: 2020-08-02T23:33:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-03T00:21:33.000Z (over 4 years ago)
- Last Synced: 2025-02-14T06:14:59.044Z (2 months ago)
- Topics: docker, gdal, geospatialpdf, qgis, ubuntu
- Language: Dockerfile
- Homepage: https://RobLabs.com
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-qgis-ubuntu
QGIS graphical user interface running on Ubuntu. Tailored for macOS.This repo allows QGIS users on macOS to access the latest QGIS on Ubuntu. A good use case is that QGIS for Ubuntu has the Geospatial PDF workflow as part of the layout manager (a feature added in GDAL 3.x, that as of this writing is not a part of the QGIS for macOS).
### How to build
```
docker build -t roblabs/qgis:ubuntu .
```### Usage notes
```
docker run -p 6080:80 -p 5901:5900 -e VNC_PASSWORD=1234 -e RESOLUTION=2048x1152 -v $(pwd):/data roblabs/qgis:ubuntu
```* `-p` Map port 6080 to port 80
* Make use of this by running this command to open in a web browser
* `open http://localhost:6080`
* `-p` Map port 5901 to port 5900
* Make use of this by running this command to open in macOS Screen Sharing
* `open vnc://localhost:5901`
* `-e VNC_PASSWORD`, is set as required by macOS Screen Sharing
* `-e RESOLUTION` can be adjusted, examples:
* `1920x1080`
* `2048x1152` # for a Retina 4K monitor
* `-v $(pwd)`
* local directory where `docker run` is issued, $(pwd), maps to `/data` on ubuntu---
