Remove no longer needed POSTGRES_HOST_AUTH_METHOD

This commit is contained in:
Sandro Jäckel 2020-05-31 10:04:55 +02:00
parent 0b52d52f4a
commit 8ebfaed546
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 1 additions and 5 deletions

View File

@ -14,7 +14,7 @@ services:
POSTGRES_PASSWORD: kemal
POSTGRES_USER: kemal
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
test: ["CMD", "pg_isready", "-U", "postgres"]
invidious:
build:
context: .

View File

@ -1,5 +1 @@
FROM postgres:10
# Do not require a PostgreSQL superuser password.
# See https://github.com/docker-library/postgres/issues/681.
ENV POSTGRES_HOST_AUTH_METHOD trust