Merge pull request #13053 from Budibase/fix/cli-update-couch
Remove CouchDB pull policy and update Budi CLI to handle couchdb service
This commit is contained in:
commit
101caf323a
|
@ -98,7 +98,6 @@ services:
|
|||
couchdb-service:
|
||||
restart: unless-stopped
|
||||
image: budibase/couchdb
|
||||
pull_policy: always
|
||||
environment:
|
||||
- COUCHDB_PASSWORD=${COUCH_DB_PASSWORD}
|
||||
- COUCHDB_USER=${COUCH_DB_USER}
|
||||
|
|
|
@ -13,7 +13,12 @@ import { COMPOSE_PATH } from "./makeFiles"
|
|||
import { info, success } from "../utils"
|
||||
import { start } from "./start"
|
||||
|
||||
const BB_COMPOSE_SERVICES = ["app-service", "worker-service", "proxy-service"]
|
||||
const BB_COMPOSE_SERVICES = [
|
||||
"app-service",
|
||||
"worker-service",
|
||||
"proxy-service",
|
||||
"couchdb-service",
|
||||
]
|
||||
const BB_SINGLE_SERVICE = ["budibase"]
|
||||
|
||||
export async function update() {
|
||||
|
|
Loading…
Reference in New Issue