From 86b199f326fa7427a7615a101c6f7b458c4a9af5 Mon Sep 17 00:00:00 2001 From: develuke-bsd <73881717+develuke-bsd@users.noreply.github.com> Date: Thu, 10 Sep 2026 13:46:54 +0200 Subject: [PATCH] Change nextcloud port to 8082 I tried out the image with using the documented compose.yml but inside the container it is listening to 8082. not 80. Is that supposed to go the other way around, so you are connecting to 80 and it gets forwarded to 8082 inside the container? --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb1f2bc..55aecda 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ services: - "/path/to/containers/nextcloud:/config" - "/path/to/containers/nextcloud/data:/data" ports: - - "8082:80" + - "8082:8082" # always (not unless-stopped) so FreeBSD's podman rc.d auto-starts it at boot restart: always ``` @@ -185,7 +185,7 @@ bastille create -O \ PGID: "1000" TZ: "UTC" ports: - - "8082:80" + - "8082:8082" volumes: - "/path/to/containers/nextcloud:/config" - "/path/to/containers/nextcloud/data:/data" @@ -216,7 +216,7 @@ Access at: `http://localhost:8082` | Port | Protocol | Description | |------|----------|-------------| -| `80` | TCP | Web UI | +| `8082` | TCP | Web UI | **Architectures:** amd64 **User:** `bsd` (UID/GID via PUID/PGID, defaults to 1000:1000) @@ -224,4 +224,4 @@ Access at: `http://localhost:8082` --- -Need help? Join our [Discord](https://discord.gg/Kb9tkhecZT) community. \ No newline at end of file +Need help? Join our [Discord](https://discord.gg/Kb9tkhecZT) community.