mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 19:41:03 +00:00
Fix PostgreSQL user
This commit is contained in:
parent
b102534136
commit
2388a5846d
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ local startDb(db) = if db == "postgres" then {
|
||||||
image: "postgres:12.3-alpine",
|
image: "postgres:12.3-alpine",
|
||||||
detach: true,
|
detach: true,
|
||||||
environment: {
|
environment: {
|
||||||
POSTGRES_USER: "postgres",
|
POSTGRES_USER: "plume",
|
||||||
POSTGRES_DB: "plume",
|
POSTGRES_DB: "plume",
|
||||||
POSTGRES_HOST_AUTH_METHOD: "trust",
|
POSTGRES_PASSWORD: "not really needed for connections from localhost",
|
||||||
}
|
}
|
||||||
} else {};
|
} else {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue