github zammad/zammad-docker-compose v2.0.0

latest releases: v12.0.4, v12.0.3, v12.0.2...
23 months ago

We've updated Zammad to 3.3.0-12 and the Elasticsearch image from 5.6 to 7.6.
As there is no direct upgrade path we have to delete all Elasticsearch indices and rebuild them.
This will depend on the name of your docker container and volume, which depends on the checkout directory (zammad-docker-compose by default):

docker-compose stop
docker container rm zammad-docker-compose_zammad-elasticsearch_1
docker volume rm zammad-docker-compose_elasticsearch-data
docker-compose up --no-recreate

To workaround the changes in the PostgreSQL 9.6 container do the following:

docker-compose start
docker exec -it zammaddockercompose_zammad-postgresql_1 bash
psql --username postgres --dbname zammad_production
CREATE USER zammad;
ALTER USER zammad WITH PASSWORD 'zammad';
ALTER USER zammad WITH SUPERUSER CREATEDB;

Full Changelog: v1.0.0...v2.0.0

Don't miss a new zammad-docker-compose release

NewReleases is sending notifications on new releases.