mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
Activate filesystem_check_changes https://github.com/szaimen/aio-smbserver/issues/27 Signed-off-by: Daniel Hartmann <60435198+hartmann-daniel@users.noreply.github.com>
64 lines
2.1 KiB
JSON
64 lines
2.1 KiB
JSON
{
|
|
"aio_services_v1": [
|
|
{
|
|
"container_name": "nextcloud-aio-smbserver",
|
|
"display_name": "SMB-server",
|
|
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/smbserver",
|
|
"image": "ghcr.io/szaimen/aio-smbserver",
|
|
"image_tag": "v1",
|
|
"internal_port": "5803",
|
|
"restart": "unless-stopped",
|
|
"ports": [
|
|
{
|
|
"ip_binding": "",
|
|
"port_number": "5803",
|
|
"protocol": "tcp"
|
|
},
|
|
{
|
|
"ip_binding": "",
|
|
"port_number": "445",
|
|
"protocol": "tcp"
|
|
},
|
|
{
|
|
"ip_binding": "",
|
|
"port_number": "139",
|
|
"protocol": "tcp"
|
|
}
|
|
],
|
|
"volumes": [
|
|
{
|
|
"source": "nextcloud_aio_smbserver",
|
|
"destination": "/smbserver",
|
|
"writeable": true
|
|
},
|
|
{
|
|
"source": "%NEXTCLOUD_DATADIR%",
|
|
"destination": "/mnt/ncdata",
|
|
"writeable": true
|
|
},
|
|
{
|
|
"source": "%NEXTCLOUD_MOUNT%",
|
|
"destination": "/mnt",
|
|
"writeable": true
|
|
}
|
|
],
|
|
"environment": [
|
|
"TZ=%TIMEZONE%",
|
|
"WEB_AUTHENTICATION_USERNAME=smbserver",
|
|
"WEB_AUTHENTICATION_PASSWORD=%SMBSERVER_PASSWORD%",
|
|
"WEB_LISTENING_PORT=5803"
|
|
],
|
|
"secrets": [
|
|
"SMBSERVER_PASSWORD"
|
|
],
|
|
"ui_secret": "SMBSERVER_PASSWORD",
|
|
"backup_volumes": [
|
|
"nextcloud_aio_smbserver"
|
|
],
|
|
"nextcloud_exec_commands": [
|
|
"php /var/www/html/occ config:system:set filesystem_check_changes --value=1 --type=integer"
|
|
]
|
|
}
|
|
]
|
|
}
|