You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53-11Lines changed: 53 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,59 @@ Elasticsearch is enabled by default in the example `docker-compose.yml` file. It
46
46
47
47
## Upgrading
48
48
49
+
### From =< to 5.0.0 to 5.2.3-32
50
+
51
+
* Elasticsearch was updated from 7.17.3 to 8.5.0 using the Bitnami image
52
+
* We don't use a custom build of the docker image anymore as ingest-attachment is no longer a plugin but instead a module packaged with this distribution of Elasticsearch
53
+
* ELASTICSEARCH_REINDEX var should be set to true
54
+
55
+
* PostgreSql was updated from 9.6.24 to 15.0.0
56
+
* We don't use a custom build of the docker image anymore as we just mount the backup script to the postgres container now
57
+
* backup / restore ins needed to update
58
+
* you can create a new backup (with your old postgres 9.6 version / still in previous git version) by:
59
+
* if you already have checked out the newest commit
Memchached config changed. If you use the old env vars `MEMCACHED_HOST` & `MEMCACHED_PORT` adapt to `MEMCACHE_SERVERS`.
94
+
Redis is a dependency for the Websocket server now.
95
+
96
+
### From =< 3.6.0-65
97
+
98
+
To be able to run Zammad container with an unprivileged user we had to change the port Nginx uses from 80 to 8080, so Zammad needs to be accessed via <http://localhost:8080> instead of <http://localhost> now!
99
+
100
+
This change will also affect you, if you use a reverse proxy, like Traefik or Haproxy, in front of Zammad as your reverse proxy configuration needs to be adapted to point to port 8080 now.
101
+
49
102
### From =< 3.3.0-12
50
103
51
104
We've updated the Elasticsearch image from 5.6 to 7.6.
@@ -69,14 +122,3 @@ CREATE USER zammad;
69
122
ALTER USER zammad WITH PASSWORD 'zammad';
70
123
ALTER USER zammad WITH SUPERUSER CREATEDB;
71
124
```
72
-
73
-
### From =< 3.6.0-65
74
-
75
-
To be able to run Zammad container with an unprivileged user we had to change the port Nginx uses from 80 to 8080, so Zammad needs to be accessed via <http://localhost:8080> instead of <http://localhost> now!
76
-
77
-
This change will also affect you, if you use a reverse proxy, like Traefik or Haproxy, in front of Zammad as your reverse proxy configuration needs to be adapted to point to port 8080 now.
78
-
79
-
### From =< 4.0.0 to 5.0.0
80
-
81
-
Memchached config changed. If you use the old env vars `MEMCACHED_HOST` & `MEMCACHED_PORT` adapt to `MEMCACHE_SERVERS`.
82
-
Redis is a dependency for the Websocket server now.
0 commit comments