Upgrading Avalon 7.2 to Avalon 7.3
Requirements
Ruby 2.7.x is recommended.
Config changes
Old setting | New setting | Note |
|---|---|---|
|
|
|
Upgrade Steps
For Manual Installations
Install ruby 2.7
Update gems, and migrate DB
bundle install --with production --without development test
RAILS_ENV=production bundle exec rake db:migrate3. Update JS dependencies
yarn install # in Avalon root dir4. Update configuration, see Config changes above
5. Restart passenger (if using)
passenger-config restart-appFor Docker Installations
Update new code from avalon-docker
git checkout master
git pullPull new Avalon image.
docker-compose pull avalonCheck config changes then replace the Avalon containers
docker-compose up avalon workerYou can also build your own image, Docker Buildkit is recommended
docker-compose build avalon