Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document what tags mean in README #274

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ Note: As of PostGIS v3.x, raster has been factored out into a separate extension

Unless `-e POSTGRES_DB` is passed to the container at startup time, this database will be named after the admin user (either `postgres` or the user specified with `-e POSTGRES_USER`). If you would prefer to use the older template database mechanism for enabling PostGIS, the image also provides a PostGIS-enabled template database called `template_postgis`.

## Versions

This repo provides images tagged a few different ways:
* `$version` - debian package;
* pro: matured; recomended for the most users; easy to extend with other debian packages
* con: older geos, proj, gdal
* `$version-alpine` - alpine based.
* pro: minimal image size; recommended for testing.
* con: musl based; harder to extend.
* `$version-master` - last "master"/"main" for posgis.geos,gdal dependencies; experimental
* pro: for testing;
* con: larger image size. experimental; not easy to extend

## Usage

In order to run a basic container capable of serving a PostGIS-enabled database, start a container as follows:
Expand Down