Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

ByteCherry/docker-postgresql-postgis-arm64

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PostgreSQL with PostGIS (ARM64)

Docker Images: Postgres 16 + PostGIS

Supported tags and respective Dockerfile links

What is PostGIS?

PostGIS is an open source software program that adds support for geographic objects to the PostgreSQL object-relational database. PostGIS follows the Simple Features for SQL specification from the Open Geospatial Consortium (OGC).

wikipedia.org/wiki/PostGIS and postgis.net

PostgreSQL, often simply "Postgres", is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards-compliance.

wikipedia.org/wiki/PostgreSQL and postgresql.org

logo

About these images

  • based on official images: postgres
  • build on Github Actions on a biweekly schedule

How to use these images

  • $ docker run --name some-postgis -v $(pwd)/postgis:/var/lib/postgresql/data -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d public.ecr.aws/bytecherry/docker-postgresql-postgis-arm64:16
  • more see official PostgreSQL-Image and PostGIS-Image

Docker-Compose

services:
  postgis:
    image: public.ecr.aws/bytecherry/docker-postgresql-postgis-arm64:16
    container_name: postgis
    volumes:
      - ./postgis:/var/lib/postgresql/data
      #- /etc/timezone:/etc/timezone:ro
      #- /etc/localtime:/etc/localtime:ro
    environment:
      POSTGRES_PASSWORD: mysecretpassword
      #POSTGRES_DB: user
      #POSTGRES_USER: user
    restart: unless-stopped
    ports:
      - 5432:5432
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 60s
      timeout: 5s
      retries: 5

This Image on

About

PostgreSQL with PostGIS - Docker Image for arm64 only

Resources

License

Stars

Watchers

Forks

Languages

  • Dockerfile 73.8%
  • Shell 26.2%