1
0
Fork 0
mirror of synced 2024-06-24 00:50:24 +12:00

Updating CouchDB with the Budi CLI, making sure the service is always up to date, as well as removing pull policy.

This commit is contained in:
mike12345567 2024-02-16 10:46:36 +00:00
parent 5a29bb7eba
commit 9a9fa3c716
2 changed files with 6 additions and 2 deletions

View file

@ -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}

View file

@ -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() {