Run update.sh

This commit is contained in:
Docker Library Bot 2023-02-24 12:08:47 -08:00
parent d3b5d1c7ef
commit 8beca9c5f7
3 changed files with 17 additions and 7 deletions

View File

@ -25,8 +25,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`3.8`, `3.8.8`](https://github.com/arangodb/arangodb-docker/blob/6e5a02cd7f5106076a1faf24360218c3e2ca3003/alpine/3.8.8/Dockerfile)
- [`3.9`, `3.9.8`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.9.8/Dockerfile)
- [`3.10`, `3.10.3`, `latest`](https://github.com/arangodb/arangodb-docker/blob/42d86d150782ccdfdf848bd5e4dc3b51d85f4364/alpine/3.10.3/Dockerfile)
- [`3.9`, `3.9.9`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.9.9/Dockerfile)
- [`3.10`, `3.10.4`, `latest`](https://github.com/arangodb/arangodb-docker/blob/6d01f6e7130208aea68d0e341bb9b009dcc3da79/alpine/3.10.4/Dockerfile)
# Quick reference (cont.)

View File

@ -61,6 +61,8 @@ A safe home for all your data. Access & share your files, calendars, contacts, m
![logo](https://raw.githubusercontent.com/docker-library/docs/eabcf59e64b4395e681a7f7a9773bd213c9f3678/nextcloud/logo.svg?sanitize=true)
This Docker micro-service image is developed and maintained by the Nextcloud community. Nextcloud GmbH does not offer support for this Docker image. When you are looking to get professional support, you can become an [enterprise](https://nextcloud.com/enterprise/) customer or use [AIO](https://github.com/nextcloud/all-in-one#nextcloud-all-in-one).
# How to use this image
This image is designed to be used in a micro-service environment. There are two versions of the image you can choose from.
@ -197,6 +199,14 @@ The install and update script is only triggered when a default command is used (
- `NEXTCLOUD_UPDATE` (default: `0`)
If you share your html folder with multiple docker containers, you might want to avoid multiple processes updating the same shared volume
- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue.
You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable.
- `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization.
If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters:
- `REDIS_HOST` (not set by default) Name of Redis container
@ -296,7 +306,7 @@ services:
db:
image: mariadb:10.5
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
volumes:
- db:/var/lib/mysql
environment:
@ -342,7 +352,7 @@ services:
db:
image: mariadb:10.5
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
volumes:
- db:/var/lib/mysql
environment:

View File

@ -24,9 +24,9 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/16.0/Dockerfile)
- [`15.0`, `15`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/15.0/Dockerfile)
- [`14.0`, `14`](https://github.com/odoo/docker/blob/2c634b7e37d7deaddd2d36b1b7fe811db5fa6367/14.0/Dockerfile)
- [`16.0`, `16`, `latest`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/16.0/Dockerfile)
- [`15.0`, `15`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/15.0/Dockerfile)
- [`14.0`, `14`](https://github.com/odoo/docker/blob/ff99b5f50135f74c22f163dacfde34189857c13b/14.0/Dockerfile)
# Quick reference (cont.)