forked from coop-cloud/nextcloud
This PR moves the db service into two override files `compose.mariadb.yml` and `compose.postgres.yml`. Existing installations need to add: ``` COMPOSE_FILE="compose.yml" COMPOSE_FILE="$COMPOSE_FILE:compose.mariadb.yml" ``` to their .env file to ensure mariadb is still used. Co-authored-by: Philipp Rothmann <philipprothmann@posteo.de> Reviewed-on: coop-cloud/nextcloud#26
7 lines
379 B
Plaintext
7 lines
379 B
Plaintext
2.0.0 introduces a minor nextcloud update to 23.0.3 and moves the database service to a seperate override.yml file to support different database types (mariadb / postgres). This might break your installation. Please add the following snippet to your config .env to ensure the right db is used:
|
|
|
|
```
|
|
COMPOSE_FILE="compose.yml"
|
|
COMPOSE_FILE="$COMPOSE_FILE:compose.mariadb.yml"
|
|
```
|