docs fixes

This commit is contained in:
xis 2023-10-31 17:47:12 +01:00
parent b8a9c451d4
commit 5eccb5b43c
No known key found for this signature in database
GPG key ID: 803DF32037A66D02
3 changed files with 1 additions and 4 deletions

View file

@ -57,7 +57,7 @@ Available env variables with their default values that you can overwrite:
| NEXTCLOUD_DLNA_INTERFACE | | (optional) interface the server will be listening on<br/>if not given, the default local address will be used | | NEXTCLOUD_DLNA_INTERFACE | | (optional) interface the server will be listening on<br/>if not given, the default local address will be used |
| NEXTCLOUD_DLNA_FRIENDLY_NAME | Nextcloud-DLNA | friendly name of the DLNA service | | NEXTCLOUD_DLNA_FRIENDLY_NAME | Nextcloud-DLNA | friendly name of the DLNA service |
| NEXTCLOUD_DATA_DIR | | nextcloud installation directory (that ends with /data) | | NEXTCLOUD_DATA_DIR | | nextcloud installation directory (that ends with /data) |
| NEXTCLOUD_DB_TYPE | mariadb | nextcloud database type (mysql, mariadb, postgresql) | | NEXTCLOUD_DB_TYPE | mariadb | nextcloud database type (mysql, mariadb, postgres) |
| NEXTCLOUD_DB_HOST | localhost | nextcloud database host | | NEXTCLOUD_DB_HOST | localhost | nextcloud database host |
| NEXTCLOUD_DB_PORT | 3306 | nextcloud database port | | NEXTCLOUD_DB_PORT | 3306 | nextcloud database port |
| NEXTCLOUD_DB_NAME | nextcloud | nextcloud database name | | NEXTCLOUD_DB_NAME | nextcloud | nextcloud database name |

View file

@ -72,8 +72,6 @@ services:
volumes: volumes:
- app:/nextcloud - app:/nextcloud
network_mode: "host" network_mode: "host"
ports:
- "9999:9999"
environment: environment:
- NEXTCLOUD_DLNA_SERVER_PORT=9999 - NEXTCLOUD_DLNA_SERVER_PORT=9999
- NEXTCLOUD_DLNA_FRIENDLY_NAME=Nextcloud - NEXTCLOUD_DLNA_FRIENDLY_NAME=Nextcloud

View file

@ -4,7 +4,6 @@ docker run -d \
--name="nextcloud-dlna" \ --name="nextcloud-dlna" \
--restart=unless-stopped \ --restart=unless-stopped \
--net=host \ --net=host \
-p 9999:9999 \
-e NEXTCLOUD_DLNA_SERVER_PORT=9999 \ -e NEXTCLOUD_DLNA_SERVER_PORT=9999 \
-e NEXTCLOUD_DLNA_FRIENDLY_NAME="Nextcloud" \ -e NEXTCLOUD_DLNA_FRIENDLY_NAME="Nextcloud" \
-e NEXTCLOUD_DB_HOST='localhost' \ -e NEXTCLOUD_DB_HOST='localhost' \