Add a dummy password

This commit is contained in:
Ana Gelez 2020-08-10 14:40:36 +02:00
parent 2388a5846d
commit 3c1617c4f9

View file

@ -53,7 +53,7 @@ local startDb(db) = if db == "postgres" then {
environment: {
POSTGRES_USER: "plume",
POSTGRES_DB: "plume",
POSTGRES_PASSWORD: "not really needed for connections from localhost",
POSTGRES_PASSWORD: "password",
}
} else {};
@ -151,7 +151,7 @@ local Integration(db) = {
image: plumeEnv,
environment: {
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: [
// Install the front-end