Releases: avalonmediasystem/avalon-docker
avalon-7.7.0
Avalon 7.7 upgrades to solr 9, externalizes the solr data from the docker volume, and requires a full reindex. See upgrade instructions on the wiki.
Avalon 7.6.0
Avalon 7.6 is not compatible with Postgres versions 9.4 and below.
The instructions below will guide you through dumping the data from Postgres prior to upgrading and then loading it again after upgrade.
Note: avalon-docker 7.6.0 switches to a bind mount volume for storing Postgres data for safer persistence across upgrades.
Before upgrading, dump the contents of Postgres and backup all data from the db volume:
docker-compose exec db pg_dumpall -U postgres -f /data/backup.sql
docker compose cp db:/data db/backup
Stop Avalon
docker-compose down
Update new code from avalon-docker
git checkout main
git pull
Pull new Avalon image.
docker-compose pull avalon
Start only the db container and allow Postgres to initialize the new bind mount volume, load the dumped data, then stop the db container.
docker-compose up db
cp db/backup/backup.sql db_data
docker-compose exec db /bin/bash -c "psql -U postgres < /data/backup.sql"
docker-compose down
Check config changes then replace the Avalon containers
docker-compose up avalon worker
Avalon 7.5.1
avalon-7.5.1 Update github tag for 7.5.1 release
Avalon 7.3.0
Bump Avalon to 7.3.0
Avalon 7.2.1
Bumps docker image/github tag to point at Avalon 7.2.1 release.
Updates
- MimeMagic version updated to resolve broken dependency
- Minor dependency changes and updates
Avalon 7.2.0
Simplifies Docker setup by replacing cron job with Sidekiq Crons, jobs
service is no longer needed.
Avalon 6.4.2
Merge pull request #27 from ualbertalib/cwant/nginx-avalon-domain Make nginx/hls container more configurable