GitHub Workflow
99ddd09783
Runs update.sh
2024-12-05 20:29:40 +00:00
Josh
cf1df9f1cc
chore: remove no longer used badges from README ( #2345 )
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-12-05 20:29:24 +00:00
GitHub Workflow
d8b6fe8239
Runs update.sh
2024-11-27 00:34:53 +00:00
Josh
61fb34da5f
fix(readme): a few typos and small sentences adjustments
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-11-24 21:40:34 -05:00
Josh
307a8a8b8a
Merge pull request #2338 from nextcloud/docs-readme-header-links-plus-misc-reorg
...
docs(readme): Add more headers for direct linking / misc refactors
2024-11-24 13:56:50 -05:00
Josh
3d21293d9e
docs(readme): Add more headers for direct linking / misc refactors
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-11-24 13:48:05 -05:00
Josh
b8b4dd8984
Merge pull request #2315 from tzerber/volume-clarification
...
Clarify Readme on bind volumes to avoid `apps` / `custom_apps` mishaps
2024-11-24 13:31:51 -05:00
Kaloyan Nikolov
a82394557c
Merge branch 'nextcloud:master' into volume-clarification
2024-11-12 23:29:49 +02:00
Kaloyan Nikolov
daea70d768
Replace bind mounts with figurative path
...
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
2024-11-12 23:25:14 +02:00
rugk
dd663d60c6
Add example command for copying ( #2327 )
...
As for https://github.com/nextcloud/docker/issues/2266 and the re-appearing message IMHO, it is quite convenient to have a command to copy here if you just have not changed any config files…
Signed-off-by: rugk <rugk+git@posteo.de>
2024-11-07 23:38:16 +00:00
J0WI
b9ed2426a0
Bump stable to 30.0.2
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-11-07 23:27:03 +00:00
GitHub Workflow
4f130dc752
Runs update.sh
2024-11-07 23:24:17 +00:00
GitHub Workflow
29d959acfd
Runs update.sh
2024-10-24 19:52:51 +00:00
Valentin Brandl
d3341b61c1
Fix initialization of autocreate
and use_ssl
( #2309 )
...
According to the documentation, both `OBJECTSTORE_S3_SSL` and
`OBJECTSTORE_S3_AUTOCREATE` should default to `true`.
Currently, when these environment variables are not set, they default to
`false`. (See https://github.com/nextcloud/docker/issues/2308 ).
This fix works, because `strtolower(false)` returns the empty string. So
when `OBJECTSTORE_S3_SSL` is not set and `getenv('OBJECTSTORE_S3_SSL')`
returns `false`, the check `strtolower($use_ssl) !== 'false'` will
evaluate to `true`.
With this fix, both values will be `true` if they are
* not set
* the empty string
* any string that is not equal to `false` when converted to lowercase
This should now match the documented behavior.
Signed-off-by: Valentin Brandl <mail@vbrandl.net>
2024-10-24 19:52:36 +00:00
Josh
aaa667ad0d
Merge pull request #2320 from nextcloud/jtr/fix-examples-matching-volumes
...
fix(examples): volumes must match to avoid 💥
2024-10-22 09:40:17 -04:00
Josh
cb8afbbe60
Merge pull request #2321 from nextcloud/jtr/feat-docs-readme-occ-config
...
feat(readme): Viewing merged config via `occ config:list system`
2024-10-22 09:28:54 -04:00
Josh
090934d9b0
feat(readme): Viewing merged config via occ config:list system
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-22 09:15:05 -04:00
Kaloyan Nikolov
0ee77f1a92
Clarify apps and custom_apps
...
Co-authored-by: Josh <josh.t.richards@gmail.com>
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
2024-10-22 02:02:06 +03:00
Josh
9b245ac4a1
fix(examples): volumes must match (with-nginx-proxy-postgres-fpm)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:53:55 -04:00
Josh
24b6769682
fix(examples): volumes must match (with-nginx-proxy-postgres-apache)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:52:21 -04:00
Josh
7e188da4fa
fix(examples): volumes must match (with-nginx-proxy-mariadb-fpm)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:51:06 -04:00
Josh
60f205abea
fix(examples): volumes must match (with-nginx-proxy-mariadb-apache)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:49:39 -04:00
Josh
e3dc1f3d62
fix(examples): volumes must match (insecure-postgres-fpm)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:47:11 -04:00
Josh
9395077d11
fix(examples): volumes must match (insecure-postgres-apache)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:45:19 -04:00
Josh
abf51f1cd7
fix(examples): volumes must match (insecure-mariadb-fpm)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:43:54 -04:00
Josh
9b63f3e4dc
fix(examples): volumes must match (insecure-mariadb-apache)
...
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-21 17:38:50 -04:00
J0WI
abd813f5fb
Bump stable to 30.0.1
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-10-21 16:44:25 +00:00
GitHub Workflow
d03da64ac8
Runs update.sh
2024-10-18 00:32:25 +00:00
Kaloyan Nikolov
53c3162c83
Clarify Readme on bind volumes
...
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
2024-10-17 22:17:18 +03:00
GitHub Workflow
178f8b65d3
Runs update.sh
2024-10-11 00:32:21 +00:00
GitHub Workflow
6c1075b88d
Runs update.sh
2024-10-08 14:20:13 +00:00
Dominic Giebert
a9f9885e65
Add FORWARDED_FOR_HEADERS to the reverse-proxy config ( #2272 )
...
* Add FORWARDED_FOR_HEADERS to the reverse-proxy config
Signed-off-by: Dominic Giebert <dominic.giebert@suse.com>
* Add FORWARDED_FOR_HEADERS to documentation
Signed-off-by: Dominic Giebert <dominic.giebert@suse.com>
---------
Signed-off-by: Dominic Giebert <dominic.giebert@suse.com>
2024-10-08 16:19:59 +02:00
Kaloyan Nikolov
8c777a4144
Update examples nginx configuration ( #2307 )
...
* Update config based on the official docs
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Update all example nginx configs according to the documentation
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
---------
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
2024-10-08 15:53:11 +02:00
J0WI
5a242f6055
MariaDB 10.11 ( #2298 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-10-08 15:33:18 +02:00
Alexandra Branco
c83d457857
Added information about permissions errors (migrating to alpine) ( #2289 )
...
* Added information about permissions errors when migrating docker images to alpine.
* Updated README.md documentation after review.
2024-10-07 19:27:24 +02:00
Kaloyan Nikolov
38994cbb87
Documentation and examples update for use with docker compose v2 ( #2201 )
...
* Update examples section according to the latest docker compose requirements.
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Minor readme updates to match the changes for the compose v2 syntax.
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Fix wrong environment variable
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Add missing headers to fpm config
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Fix cache control
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Add mjs file extension in a proper way.
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Typos fixed, minor clarification changes
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Removed logging from compose files.
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Restored MariaDB to 10.6 as per docs suggestions
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Remove extra nginx volume
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Removed GH specific markdown from Readme, change mariadb to recommended version
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* typo
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Update .examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
* Update to correct MariaDB command
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Updated compose files for mariadb to match current docs
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Update outdated docker-compose command in Readme
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Added back --log-bin to MariaDB command. See PR 1881
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Remove wrongly added logging to Readme.MD
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
* Use proper name for --log-bin param
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
---------
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Co-authored-by: J0WI <J0WI@users.noreply.github.com>
2024-10-07 19:27:05 +02:00
GitHub Workflow
9ff7b6a529
Runs update.sh
2024-10-05 00:31:43 +00:00
GitHub Workflow
f6d767efb1
Runs update.sh
2024-09-22 00:34:53 +00:00
GitHub Workflow
30b570f0b5
Runs update.sh
2024-09-18 20:45:28 +00:00
Florian Latifi
2bc1036e61
Exclude autoconfig.php from user config check ( #2290 )
...
Signed-off-by: Florian Latifi <mail@florian-latifi.at>
2024-09-18 20:45:15 +00:00
John Molakvoæ
a1e93f429c
Bump stable to 29.0.7 ( #2297 )
...
Fix #2294
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
2024-09-18 19:43:16 +00:00
GitHub Workflow
0ffd24170f
Runs update.sh
2024-09-15 00:34:40 +00:00
GitHub Workflow
1c8d764f3c
Runs update.sh
2024-09-13 00:30:28 +00:00
Joas Schilling
ec854e4d3c
Merge pull request #2292 from nextcloud/ci/noid/update-workflow-109
...
ci: Update workflows
2024-09-10 10:58:03 +02:00
Joas Schilling
f3bd22ca92
ci: Update workflows
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-09-10 10:57:46 +02:00
J0WI
d78afcbcda
Bump stable to 29.0.6
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-09-03 20:17:50 +00:00
GitHub Workflow
53653c2648
Runs update.sh
2024-09-03 19:57:56 +00:00
J0WI
e6d024039f
29.0.5 ( #2281 )
...
* Bump stable to 29.0.5
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
* 27 EOL
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
---------
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-08-21 12:19:50 +00:00
GitHub Workflow
3677cdf9ad
Runs update.sh
update.sh / Run update.sh script (push) Has been cancelled
2024-08-21 00:28:49 +00:00
J0WI
65138b6d22
Bump stable to 29.0.4 ( fix #2258 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
2024-07-20 12:47:17 +00:00