docker-postgresql icon indicating copy to clipboard operation
docker-postgresql copied to clipboard

Dockerfile to build a PostgreSQL container image which can be linked to other containers.

Results 53 docker-postgresql issues
Sort by recently updated
recently updated
newest added

I get the following error when trying to initialize Postgresql with UID:GID mapping: ``` git-postgresql-1 | 2017-02-17T11:26:38.206689685Z Adapting uid and gid for postgres:postgres to 70:70 git-postgresql-1 | 2017-02-17T11:26:38.225581507Z Initializing datadir......

Thanks for providing this useful container. I have a question about two postgre config: It seems you keep the default setting of `checkpoint_segments` to 5min and `checkpoint_completion_target` to 0.5. However,...

The neat concept to create a point-in-time-backup by specifying REPLICATION_MODE=backup and `--volume /srv/docker/backups/postgresql.$(date +%Y%m%d%H%M%S):/var/lib/postgresql \` does not work for a docker-compose file since the volume name cannot be resolved in...

[reference to error mesage](https://stackoverflow.com/questions/49064209/getting-archiver-unsupported-version-1-13-in-file-header-when-running-pg-r) The problem is only for version 9.5 and 9.6. PErhaps the new patching should be introduced. Thank you

when a docker PostgreSQL container get crash/stop how could i recover data . is it any possible to recover ?

Hi, I suggest to add this section in `README.md`: * Why should I use `sameersbn/docker-postgresql` instead [Official postgresql Docker container](https://hub.docker.com/_/postgres/)? * pros / cons for sameersbn/docker-postgresql vs Official postgresql Docker...

I'm using this image with Gitlab without flaws, but now I'm trying to add a new service that requires a DB service. Then i saw the issue #11 and tried...

Official image allows to run arbitary `*.sql` and `*.sh` scripts after initialization with `initdb`, but before full production start of the container. Having similar feature with your image would be...

Is there any option to activate Point in Time Recovery ?