Skip to content

multi-repo/postgres

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

postgres image

Start custom (Linux/mac os)

podman run -d \
  --name my_postgres \
  -e POSTGRES_USER=admin \
  -e POSTGRES_PASSWORD=secret \
  -e POSTGRES_DB=mydb \
  -p 5671:5432 \
  ghcr.io/multi-repo/postgres/pg:main
postgres://admin:secret@localhost:5671/mydb 

Start default

podman run \
  --name postgres \
  -p 5671:5432 \
  ghcr.io/multi-repo/postgres/pg:main

postgres://admin:secret@localhost:5671/mydb

Start (powershell)

podman run `
  --name my_postgres `
  -e POSTGRES_USER=admin `
  -e POSTGRES_PASSWORD=secret `
  -e POSTGRES_DB=mydb `
  -p 5671:5432 `
  ghcr.io/multi-repo/postgres/pg:main

Url format

postgres://user:password@host:port/database

About

Postgres instance

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages