0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-07-18 13:38:05 +02:00

Compare commits

...

4 commits

Author SHA1 Message Date
Josh
e118e7034c
Merge 9f1ec22140 into c351ce76ab 2025-03-11 09:59:04 +00:00
Josh
c351ce76ab
docs(README): Fix missing -it in non-Compose docker exec command
Signed-off-by: Josh <josh.t.richards@gmail.com>
2025-03-09 10:31:16 -04:00
Josh
73949fe23a
fix(templates): Fix bug in issue template config
Fix bug introduced by #2400

Signed-off-by: Josh <josh.t.richards@gmail.com>
2025-03-06 16:08:37 -05:00
Josh
9f1ec22140 chore(examples): add postgres 15 image tag
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-10 10:02:24 -04:00
6 changed files with 8 additions and 8 deletions

View file

@ -1,6 +1,6 @@
services:
db:
image: postgres:alpine
image: postgres:15
restart: always
volumes:
- db:/var/lib/postgresql/data:Z

View file

@ -1,6 +1,6 @@
services:
db:
image: postgres:alpine
image: postgres:15
restart: always
volumes:
- db:/var/lib/postgresql/data:Z

View file

@ -1,6 +1,6 @@
services:
db:
image: postgres:alpine
image: postgres:15
restart: always
volumes:
- db:/var/lib/postgresql/data:Z

View file

@ -2,7 +2,7 @@ version: '3'
services:
db:
image: postgres:alpine
image: postgres:15
restart: always
volumes:
- db:/var/lib/postgresql/data:Z

View file

@ -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

View file

@ -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
@ -515,7 +515,7 @@ Example:
```yaml
services:
db:
image: postgres
image: postgres:15
restart: always
volumes:
- db:/var/lib/postgresql/data