Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions self-hosted/deployment/upgrade.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ If your installation is very old, upgrade iteratively through intermediate Docke
</Note>

```bash
docker-compose down
docker-compose pull
docker-compose up -d
docker compose down
docker compose pull
docker compose up -d
```

Run the `rails db:chatwoot_prepare` option after accessing the console from one of the containers running the latest image.
Run the database preparation task after starting the containers with the updated image.

```bash
docker exec -it $(basename $(pwd))-rails-1 sh -c 'RAILS_ENV=production bundle exec rails db:chatwoot_prepare'
docker compose run --rm rails bundle exec rails db:chatwoot_prepare
```

## Helm(Kubernetes)
Expand Down
Loading