37 lines
689 B
Plaintext
37 lines
689 B
Plaintext
# ----------
|
|
# Update formbricks (docker image)
|
|
# ----------
|
|
|
|
# ----------
|
|
#
|
|
# see:
|
|
# https://formbricks.com/docs/self-hosting/setup/docker#update
|
|
#
|
|
# seei also migration guis for version specific steps to update Formbricks.
|
|
#
|
|
# https://formbricks.com/docs/self-hosting/advanced/migration
|
|
#
|
|
# ----------
|
|
|
|
|
|
# 0. navigate to the formbricks directory where your docker-compose.yml file is located.
|
|
#
|
|
cd /usr/local/formbricks
|
|
|
|
|
|
# 1. Pull the latest Formbricks image
|
|
#
|
|
docker compose pull
|
|
|
|
|
|
# 2. Stop the running Formbricks instance & remove the related containers:
|
|
#
|
|
docker compose down
|
|
|
|
|
|
# 3. Restarting the containers with the latest version of Formbricks:
|
|
#
|
|
docker compose up -d
|
|
|
|
|