spring-boot-docker-postgres icon indicating copy to clipboard operation
spring-boot-docker-postgres copied to clipboard

Spring Boot Docker project for running the Postgres container

Results 7 spring-boot-docker-postgres issues
Sort by recently updated
recently updated
newest added

De `pg_isready` commando ([postgres](https://www.postgresql.org/docs/9.3/app-pg-isready.html)) kan gebruikt worden ipv wachten op een bepaalde log string. Dit geeft pas een OK als het connecties kan aannemen.

Issue #29 by default the Docker run will make use of in-memory mounts for the application and data path in the standard Postgres Docker image. If in-memory must be disabled,...

This is the standard command: ``` docker run --rm --tty -e POSTGRES_PASSWORD=${password} -p ${port}:5432 --name ${containerName} ${imageName}:${imageVersion} ``` The recent addition of ```--tty``` resulted in the ```--rm``` no longer working....

Test the plugin for Docker v1.10 and make this the minimum required version.

enhancement

After Docker starts, it immediately throws an error: ``` Docker for Mac: version: 1.13.1 (94675c5a7) macOS: version 10.12.3 (build: 16D32) logs: /tmp/07D3CEA4-D41E-406C-9DB4-5F98DA209D80/20170301-095024.tar.gz failure: com.docker.slirp is not running [OK] vmnetd [OK]...

You will see the following error: ``` Cannot run program "docker": error=2, No such file or directory ``` STS cannot find Docker because it was not started up with the...