update to 3.6.0-67 (#194)

* update to 3.6.0-67

Signed-off-by: André Bauer <monotek23@gmail.com>

* fix ci name

Signed-off-by: André Bauer <monotek23@gmail.com>

* fix typo

Signed-off-by: André Bauer <monotek23@gmail.com>
This commit is contained in:
André Bauer 2021-03-19 15:04:38 +01:00 committed by GitHub
parent 73a4fbd453
commit b39454dc36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

2
.env
View File

@ -3,4 +3,4 @@ POSTGRES_PASS=zammad
POSTGRES_USER=zammad POSTGRES_USER=zammad
RESTART=always RESTART=always
# don't forget to add the minus before the version # don't forget to add the minus before the version
VERSION=-3.6.0-65 VERSION=-3.6.0-67

View File

@ -1,4 +1,4 @@
name: ci name: ci-remote-image
on: on:
pull_request: pull_request:

View File

@ -70,3 +70,9 @@ CREATE USER zammad;
ALTER USER zammad WITH PASSWORD 'zammad'; ALTER USER zammad WITH PASSWORD 'zammad';
ALTER USER zammad WITH SUPERUSER CREATEDB; ALTER USER zammad WITH SUPERUSER CREATEDB;
``` ```
### From =< 3.6.0-65
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!
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.