Set parameters
This commit is contained in:
parent
106563c449
commit
98aa60879f
|
@ -3,7 +3,10 @@ module.exports = {
|
||||||
image: "budibase/dependencies",
|
image: "budibase/dependencies",
|
||||||
tag: "latest",
|
tag: "latest",
|
||||||
ports: [6379, 5984, 9000],
|
ports: [6379, 5984, 9000],
|
||||||
env: {},
|
env: {
|
||||||
|
COUCHDB_USER: "test_couchdb_user",
|
||||||
|
COUCHDB_PASSWORD: "test_couchdb_password",
|
||||||
|
},
|
||||||
wait: {
|
wait: {
|
||||||
type: "text",
|
type: "text",
|
||||||
text: "Test environment started...",
|
text: "Test environment started...",
|
||||||
|
|
|
@ -34,5 +34,5 @@ overrideConfigValue(
|
||||||
`http://localhost:${global.__TESTCONTAINERS_DEVENV_PORT_9000__}`
|
`http://localhost:${global.__TESTCONTAINERS_DEVENV_PORT_9000__}`
|
||||||
)
|
)
|
||||||
|
|
||||||
overrideConfigValue("COUCH_DB_USERNAME", "admin")
|
overrideConfigValue("COUCH_DB_USERNAME", "test_couchdb_user")
|
||||||
overrideConfigValue("COUCH_DB_PASSWORD", "admin")
|
overrideConfigValue("COUCH_DB_PASSWORD", "test_couchdb_password")
|
||||||
|
|
Loading…
Reference in New Issue