Passwordless PostgreSQL connections

This commit is contained in:
Ana Gelez 2020-08-10 11:37:51 +02:00
parent 3de6b46465
commit f340bd50c7

View File

@ -52,7 +52,8 @@ local startDb(db) = if db == "postgres" then {
detach: true, detach: true,
environment: { environment: {
POSTGRES_USER: "postgres", POSTGRES_USER: "postgres",
POSTGRES_DB: "plume" POSTGRES_DB: "plume",
POSTGRES_HOST_AUTH_METHOD: "trust",
} }
}; };