mirror of
https://github.com/nextcloud/docker.git
synced 2025-07-28 09:28:05 +02:00
Compare commits
4 commits
91a43ec97b
...
058241155b
Author | SHA1 | Date | |
---|---|---|---|
|
058241155b | ||
|
5a242f6055 | ||
|
0f899fe772 | ||
|
040b7411a4 |
6 changed files with 22 additions and 8 deletions
|
@ -19,7 +19,14 @@ if (getenv('OBJECTSTORE_S3_BUCKET')) {
|
|||
// required for some non Amazon S3 implementations
|
||||
'use_path_style' => $use_path == true && strtolower($use_path) !== 'false',
|
||||
// required for older protocol versions
|
||||
'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false'
|
||||
'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false',
|
||||
'concurrency' => getenv('OBJECTSTORE_S3_CONCURRENCY') ?: '',
|
||||
'proxy' => getenv('OBJECTSTORE_S3_PROXY') ?: '',
|
||||
'timeout' => getenv('OBJECTSTORE_S3_TIMEOUT') ?: '',
|
||||
'uploadPartSize' => getenv('OBJECTSTORE_S3_UPLOADPARTSIZE') ?:'',
|
||||
'putSizeLimit' => getenv('OBJECTSTORE_S3_PUTSIZELIMIT') ?: '',
|
||||
'version' => getenv('OBJECTSTORE_S3_VERSION') ?: '',
|
||||
'verify_bucket_exists' => getenv('OBJECTSTORE_S3_VERIFY_BUCKET_EXISTS') ?: ''
|
||||
)
|
||||
)
|
||||
);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
restart: always
|
||||
volumes:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
restart: always
|
||||
volumes:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
restart: always
|
||||
volumes:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
restart: always
|
||||
volumes:
|
||||
|
|
13
README.md
13
README.md
|
@ -68,7 +68,7 @@ Database:
|
|||
```console
|
||||
$ docker run -d \
|
||||
-v db:/var/lib/mysql \
|
||||
mariadb:10.6
|
||||
mariadb:10.11
|
||||
```
|
||||
|
||||
### Additional volumes
|
||||
|
@ -191,6 +191,13 @@ To use an external S3 compatible object store as primary storage, set the follow
|
|||
- `OBJECTSTORE_S3_OBJECT_PREFIX` (default: `urn:oid:`): Prefix to prepend to the fileid
|
||||
- `OBJECTSTORE_S3_AUTOCREATE` (default: `true`): Create the container if it does not exist
|
||||
- `OBJECTSTORE_S3_SSE_C_KEY` (not set by default): Base64 encoded key with a maximum length of 32 bytes for server side encryption (SSE-C)
|
||||
- `OBJECTSTORE_S3_CONCURRENCY` (default: `5`) defines the maximum number of concurrent multipart uploads
|
||||
- `OBJECTSTORE_S3_PROXY` (default: `false`)
|
||||
- `OBJECTSTORE_S3_TIMEOUT` (default: `15`)
|
||||
- `OBJECTSTORE_S3_UPLOADPARTSIZE` (default: `524288000`)
|
||||
- `OBJECTSTORE_S3_PUTSIZELIMIT` (default: `104857600`)
|
||||
- `OBJECTSTORE_S3_VERSION` (default: `latest`)
|
||||
- `OBJECTSTORE_S3_VERIFY_BUCKET_EXISTS` (default: `true`)
|
||||
|
||||
Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/primary_storage.html#simple-storage-service-s3) for more information.
|
||||
|
||||
|
@ -294,7 +301,7 @@ Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` varia
|
|||
```yaml
|
||||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
restart: always
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
volumes:
|
||||
|
@ -342,7 +349,7 @@ Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` varia
|
|||
```yaml
|
||||
services:
|
||||
db:
|
||||
image: mariadb:10.6
|
||||
image: mariadb:10.11
|
||||
restart: always
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
volumes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue