2023-02-01 12:49:25 +01:00
|
|
|
module.exports = () => {
|
2023-01-24 12:02:58 +01:00
|
|
|
return {
|
2023-08-18 15:18:47 +02:00
|
|
|
couchdb: {
|
|
|
|
image: "budibase/couchdb",
|
|
|
|
ports: [5984],
|
|
|
|
env: {
|
|
|
|
COUCHDB_PASSWORD: "budibase",
|
|
|
|
COUCHDB_USER: "budibase",
|
|
|
|
},
|
|
|
|
wait: {
|
|
|
|
type: "ports",
|
2023-08-23 18:27:04 +02:00
|
|
|
timeout: 20000,
|
2023-08-18 15:18:47 +02:00
|
|
|
}
|
|
|
|
}
|
2023-01-24 12:02:58 +01:00
|
|
|
}
|
|
|
|
}
|