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

A dockerfile that produces a docker image that runs postgresql.

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

When I try to run the following: `docker run --name="foo" -e PASS="bar" foo` the default PASS is overridden with "bar" instead. When I run the following: `docker run --name="foo" -e...

Fresh install, `docker pull paintedfox/postgresql` and ``` docker run -d --name="postgresql" \ -p 127.0.0.1:5432:5432 \ -v /tmp/postgresql:/data \ -e USER="super" \ -e DB="database_name" \ -e PASS="$(pwgen -s -1 16)" \...

Upgrade to postgresql 9.4 I recommend to build as this way to keep docker tags: `docker build -t paintedfox/postgresql:9.4 .` `docker build -t paintedfox/postgresql:latest .` Two images will be generated...

Fix Autovacum start in postgres. The logs (docker logs postgresql) show the error: LOG: could not open temporary statistics file "/var/run/postgresql/9.3-main.pg_stat_tmp/global.tmp" And autovacum does not start I suggest to create...

Based on https://github.com/nimiq/docker-postgresql93/blob/ffbd5a929b986be3c8a00560801c2a21bb874fe0/Dockerfile it makes container work correctly with AuFS.

I'm running this container using Vagrant. The docker logs shows me I can't start the database: ``` Starting PostgreSQL... FATAL: could not access private key file "/etc/ssl/private/ssl-cert-snakeoil.key": Permission denied ```...

I ran into a problem where Postgres complained about incorrect permissions. This fixed it, and generally is a good idea here IMHO.

Add 'exec' to command line to make sv up/down work like it should.

Hi Ive tried setting up docker-postgresql several times, but always run into the same problem: psql: FATAL: password authentication failed for user "super" FATAL: password authentication failed for user "super"...