From 9f1ec22140461606ad58656064ecc16b49ba8ef9 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 10 Oct 2024 09:15:37 -0400 Subject: [PATCH 1/3] chore(examples): add postgres 15 image tag Signed-off-by: Josh --- .../docker-compose/insecure/postgres/apache/compose.yaml | 4 ++-- .examples/docker-compose/insecure/postgres/fpm/compose.yaml | 2 +- .../with-nginx-proxy/postgres/apache/compose.yaml | 2 +- .../docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml | 2 +- README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.examples/docker-compose/insecure/postgres/apache/compose.yaml b/.examples/docker-compose/insecure/postgres/apache/compose.yaml index 646261d0..84c706f1 100644 --- a/.examples/docker-compose/insecure/postgres/apache/compose.yaml +++ b/.examples/docker-compose/insecure/postgres/apache/compose.yaml @@ -1,6 +1,6 @@ services: db: - image: postgres:alpine + image: postgres:15 restart: always volumes: - db:/var/lib/postgresql/data:Z @@ -39,4 +39,4 @@ services: volumes: db: - nextcloud: \ No newline at end of file + nextcloud: diff --git a/.examples/docker-compose/insecure/postgres/fpm/compose.yaml b/.examples/docker-compose/insecure/postgres/fpm/compose.yaml index b5071d5c..b5c3ed63 100644 --- a/.examples/docker-compose/insecure/postgres/fpm/compose.yaml +++ b/.examples/docker-compose/insecure/postgres/fpm/compose.yaml @@ -1,6 +1,6 @@ services: db: - image: postgres:alpine + image: postgres:15 restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml b/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml index a3dece4b..3af1becb 100644 --- a/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml +++ b/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml @@ -1,6 +1,6 @@ services: db: - image: postgres:alpine + image: postgres:15 restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml b/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml index 09a80e7d..352aed4a 100644 --- a/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml +++ b/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml @@ -2,7 +2,7 @@ version: '3' services: db: - image: postgres:alpine + image: postgres:15 restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/README.md b/README.md index b2ec983d..e03d4d72 100644 --- a/README.md +++ b/README.md @@ -395,7 +395,7 @@ As an alternative to passing sensitive information via environment variables, `_ ```yaml services: db: - image: postgres + image: postgres:15 restart: always volumes: - db:/var/lib/postgresql/data From 73949fe23a61526098dc260aa2f1b74b366f274e Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 6 Mar 2025 16:08:37 -0500 Subject: [PATCH 2/3] fix(templates): Fix bug in issue template config Fix bug introduced by #2400 Signed-off-by: Josh --- .github/ISSUE_TEMPLATE/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 1407f07e..bbc4a691 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -14,9 +14,9 @@ contact_links: - name: 🐳 Docker Forum url: https://forums.docker.com/ about: Ask a question, get assistance or start a discussion regarding Docker - - name: 🐛 Bug Report: Nextcloud Server + - name: 🐛 Bug Report - Nextcloud Server url: https://github.com/nextcloud/server/issues/new/choose about: Report a bug in Nextcloud Server - - name: Enhancement Idea: Nextcloud Server + - name: Enhancement Idea - Nextcloud Server url: https://github.com/nextcloud/server/issues/new/choose about: Suggest an enhancement idea for Nextcloud Server From c351ce76ab819301d0c124aefe9475761582e3f3 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 9 Mar 2025 10:31:16 -0400 Subject: [PATCH 3/3] docs(README): Fix missing `-it` in non-Compose `docker exec` command Signed-off-by: Josh --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f13f17c..7de62124 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ See: To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html) (aka. `occ` command): ```console -$ docker exec --user www-data CONTAINER_ID php occ +$ docker exec -it --user www-data CONTAINER_ID php occ ``` or for docker compose: ```console