mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 19:41:03 +00:00
Add a dummy password
This commit is contained in:
parent
2388a5846d
commit
3c1617c4f9
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ local startDb(db) = if db == "postgres" then {
|
||||||
environment: {
|
environment: {
|
||||||
POSTGRES_USER: "plume",
|
POSTGRES_USER: "plume",
|
||||||
POSTGRES_DB: "plume",
|
POSTGRES_DB: "plume",
|
||||||
POSTGRES_PASSWORD: "not really needed for connections from localhost",
|
POSTGRES_PASSWORD: "password",
|
||||||
}
|
}
|
||||||
} else {};
|
} else {};
|
||||||
|
|
||||||
|
@ -151,7 +151,7 @@ local Integration(db) = {
|
||||||
image: plumeEnv,
|
image: plumeEnv,
|
||||||
environment: {
|
environment: {
|
||||||
BROWSER: "firefox",
|
BROWSER: "firefox",
|
||||||
DATABASE_URL: if db == "postgres" then "postgres://plume@start-db/plume" else "plume.db",
|
DATABASE_URL: if db == "postgres" then "postgres://plume:password@start-db/plume" else "plume.db",
|
||||||
},
|
},
|
||||||
commands: [
|
commands: [
|
||||||
// Install the front-end
|
// Install the front-end
|
||||||
|
|
Loading…
Reference in a new issue