Fix PostgreSQL user

This commit is contained in:
Ana Gelez 2020-08-10 14:17:59 +02:00
parent b102534136
commit 2388a5846d

View File

@ -51,9 +51,9 @@ local startDb(db) = if db == "postgres" then {
image: "postgres:12.3-alpine",
detach: true,
environment: {
POSTGRES_USER: "postgres",
POSTGRES_USER: "plume",
POSTGRES_DB: "plume",
POSTGRES_HOST_AUTH_METHOD: "trust",
POSTGRES_PASSWORD: "not really needed for connections from localhost",
}
} else {};