zammad / zammad-docker-compose

Zammad Docker images for docker-compose
https://hub.docker.com/r/zammad/zammad-docker-compose/
GNU Affero General Public License v3.0
268 stars 207 forks source link

Running on Localhost:8081 not work (Podman) #394

Closed Mannshoch closed 8 months ago

Mannshoch commented 8 months ago

Infos

Expected behavior

Actual behavior

Steps to reproduce the behavior

services:

zammad-nginx: ports:

mgruner commented 8 months ago

Just tried this locally with this diff from the git state:

diff --git a/docker-compose.override.yml b/docker-compose.override.yml
index 3c1e74f..9ebac88 100644
--- a/docker-compose.override.yml
+++ b/docker-compose.override.yml
@@ -5,4 +5,4 @@ services:

   zammad-nginx:
     ports:
-      - "8080:8080"
+      - "8081:8081"
diff --git a/docker-compose.yml b/docker-compose.yml
index 21f6936..f10d675 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -21,7 +21,7 @@ x-shared:
       ELASTICSEARCH_NAMESPACE:
       ELASTICSEARCH_REINDEX:
       ELASTICSEARCH_SSL_VERIFY:
-      NGINX_PORT:
+      NGINX_PORT: 8081
       NGINX_SERVER_NAME:
       NGINX_SERVER_SCHEME:
       POSTGRESQL_DB_CREATE:
@@ -88,7 +88,7 @@ services:
     <<: *zammad-service
     command: ["zammad-nginx"]
     expose:
-      - "8080"
+      - "8081"
     depends_on:
       - zammad-railsserver
     volumes:

Works correctly.