Sign inSign up

bluse/postgres

By bluse

Updated about 1 month ago

zh_CN LLVM ZSTD LZ4 NLS openSSL ossp-uuid xml

Image
Databases & storage
0

8.1K

bluse/postgres repository overview

Quick reference

Maintained by:

bluse's docker images

Where to get help:

add a issue or [email protected]

PostgreSQL 18.2 Custom Edition

Support:

  • WAL compression
    • zstd
    • lz4
  • LLVM
  • nls
  • icu
  • openssl
  • ossp uuid

How to use this image

init DB

docker run -it --rm -v /data:/data bluse/postgres initdb -D /data/main

start a instance

docker run -d -v /data:/data -p 5432:5432 bluse/postgres postgres -D /data/main

Example use in docker-compose

services:

  postgres:
    container_name: postgres
    hostname: postgres
    image: bluse/postgres
    volumes:
      - /data:/data
    ports:
      - 5432:5432
    command: postgres -D /data/main
    restart: always

Tag summary

Content type

Image

Digest

sha256:977b5a778

Size

378.9 MB

Last updated

4 months ago

docker pull bluse/postgres