Open d3vopz-net opened 5 years ago
docker-images/sw360empty/docker-entrypoint.sh
if [ ! "$POSTGRES_HOST" ] || [ ! "$POSTGRES_USER" ] || ( [ ! -f "$POSTGRES_PASSWORD_FILE" ] && [ ! "$POSTGRES_PASSWORD"] ); then echo "postgres configuration incomplete" exit 1 fi
should be [ ! "$POSTGRES_PASSWORD" ] otherwise issues with script
[ ! "$POSTGRES_PASSWORD" ]
docker-images/sw360empty/docker-entrypoint.sh
should be
[ ! "$POSTGRES_PASSWORD" ]
otherwise issues with script