2023-01-23 18:41:32 +01:00
|
|
|
module.exports = env => ({
|
2022-12-15 22:06:30 +01:00
|
|
|
devEnv: {
|
2023-01-23 11:45:59 +01:00
|
|
|
image: "budibase/dependencies",
|
2022-12-15 22:06:30 +01:00
|
|
|
tag: "latest",
|
|
|
|
ports: [6379, 5984, 9000],
|
2023-01-23 18:41:32 +01:00
|
|
|
env,
|
2022-12-15 22:06:30 +01:00
|
|
|
wait: {
|
|
|
|
type: "text",
|
|
|
|
text: "Test environment started...",
|
|
|
|
},
|
|
|
|
},
|
2023-01-23 18:41:32 +01:00
|
|
|
})
|