Skip to content

Releases: avalonmediasystem/avalon-docker

avalon-7.7.0

11 Mar 18:21
6a7d2a9
Compare
Choose a tag to compare

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

28 Apr 17:49
Compare
Choose a tag to compare

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

28 Apr 17:42
5185b5e
Compare
Choose a tag to compare
avalon-7.5.1

Update github tag for 7.5.1 release

Avalon 7.3.0

17 Mar 19:11
406571b
Compare
Choose a tag to compare

Bump Avalon to 7.3.0

Release notes here

Avalon 7.2.1

17 Mar 14:56
Compare
Choose a tag to compare

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

17 Feb 21:16
6c2caab
Compare
Choose a tag to compare

Simplifies Docker setup by replacing cron job with Sidekiq Crons, jobs service is no longer needed.

Avalon 6.4.2

18 Jun 20:33
775c8d5
Compare
Choose a tag to compare
Merge pull request #27 from ualbertalib/cwant/nginx-avalon-domain

Make nginx/hls container more configurable