10K+
This repository provides Docker images for PostgreSQL with cheminformatics extensions (RDKit and Bingo).
Tags follow this pattern:
rocky{ROCKY_VERSION}-postgres{POSTGRES_VERSION}-{EXTENSION}{EXTENSION_VERSION}
Where:
ROCKY_VERSION: Rocky Linux major version (currently 9)POSTGRES_VERSION: Full PostgreSQL version (e.g., 15.15, 16.11, 17.7)EXTENSION: rdkit or bingoEXTENSION_VERSION: Extension version (e.g., 2024.03.6 for RDKit, 1.36.0 for Bingo)For Rocky Linux 9, simplified tags without the OS prefix are available:
postgres{POSTGRES_VERSION}-{EXTENSION}{EXTENSION_VERSION}
For the latest minor PostgreSQL version, tags can use just the major version:
postgres{POSTGRES_MAJOR}-{EXTENSION}{EXTENSION_VERSION}
Example: postgres17-rdkit2024.03.6 is equivalent to rocky9-postgres17.7-rdkit2024.03.6 (assuming 17.7 is the latest minor version).
Image uses entrypoint script derived from official PostgreSQL image.
All images are configured with:
listen_addresses = '*')pg_isready/var/lib/postgresql/datashared_preload_librariesdocker run -d \
--name cheminfo-rdkit \
-e POSTGRES_PASSWORD=secretpassword \
-e POSTGRES_DB=chemistry \
-p 5432:5432 \
-v pgdata:/var/lib/postgresql/17/data \
antonsiomchen/cheminfo-db:postgres17-rdkit2024.03.6
docker run -d \
--name cheminfo-bingo \
-e POSTGRES_PASSWORD=secretpassword \
-e POSTGRES_DB=chemistry \
-p 5432:5432 \
-v pgdata:/var/lib/postgresql/17/data \
antonsiomchen/cheminfo-db:postgres17-bingo1.36.0
Content type
Image
Digest
sha256:22f9a913f…
Size
125.4 MB
Last updated
4 months ago
docker pull antonsiomchen/cheminfo-db:rocky9-postgres16-bingo1.42.0