├── Dockerfile ├── LICENSE ├── README.md ├── locale ├── pg_hba.conf ├── pg_hba.conf.default ├── postgresql.conf ├── postgresql.conf.default ├── runit ├── cron └── postgres └── scripts ├── ensure_ownership.sh ├── start_cron.sh └── start_postgres.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/README.md -------------------------------------------------------------------------------- /locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/locale -------------------------------------------------------------------------------- /pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/pg_hba.conf -------------------------------------------------------------------------------- /pg_hba.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/pg_hba.conf.default -------------------------------------------------------------------------------- /postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/postgresql.conf -------------------------------------------------------------------------------- /postgresql.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/postgresql.conf.default -------------------------------------------------------------------------------- /runit/cron: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /data/scripts/start_cron.sh 3 | -------------------------------------------------------------------------------- /runit/postgres: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /data/scripts/start_postgres.sh 3 | -------------------------------------------------------------------------------- /scripts/ensure_ownership.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/scripts/ensure_ownership.sh -------------------------------------------------------------------------------- /scripts/start_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/scripts/start_cron.sh -------------------------------------------------------------------------------- /scripts/start_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abevoelker/docker-postgres/HEAD/scripts/start_postgres.sh --------------------------------------------------------------------------------