Skip to content

Commit

Permalink
Nextcloud-DLNA community container
Browse files Browse the repository at this point in the history
Signed-off-by: xis <[email protected]>
  • Loading branch information
thanek committed Oct 26, 2023
1 parent b2ca0b0 commit 5dba9a8
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
38 changes: 38 additions & 0 deletions community-containers/dlna/dlna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"aio_services_v1": [
{
"container_name": "nextcloud-aio-dlna",
"display_name": "DLNA",
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/dlna",
"image": "thanek/nextcloud-dlna",
"image_tag": "latest",
"internal_port": "host",
"restart": "unless-stopped",
"depends_on": [
"nextcloud-aio-database",
"nextcloud-aio-nextcloud"
],
"environment": [
"NEXTCLOUD_DLNA_SERVER_PORT=9999",
"NEXTCLOUD_DLNA_FRIENDLY_NAME=Nextcloud-AIO",
"NEXTCLOUD_DATA_DIR=/data",
"NEXTCLOUD_DB_TYPE=postgres",
"NEXTCLOUD_DB_HOST=%AIO_DATABASE_HOST%",
"NEXTCLOUD_DB_PORT=5432",
"NEXTCLOUD_DB_NAME=nextcloud_database",
"NEXTCLOUD_DB_USER=nextcloud",
"NEXTCLOUD_DB_PASS=%DATABASE_PASSWORD%"
],
"secrets": [
"DATABASE_PASSWORD"
],
"volumes": [
{
"source": "%NEXTCLOUD_DATADIR%",
"destination": "/data",
"writeable": false
}
]
}
]
}
9 changes: 9 additions & 0 deletions community-containers/dlna/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## DLNA server
This container bundles DLNA server with your Nextcloud files to be accessible by the clients in your local network

### Repository
https://github.com/thanek/nextcloud-dlna

### Maintainer
https://github.com/thanek

0 comments on commit 5dba9a8

Please sign in to comment.