2021-11-30 11:20:42 +01:00
|
|
|
{
|
2022-12-30 23:49:54 +01:00
|
|
|
"aio_services_v1": [
|
2021-11-30 11:20:42 +01:00
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-apache",
|
2022-12-25 00:39:22 +01:00
|
|
|
"depends_on": [
|
2022-03-17 10:13:21 +01:00
|
|
|
"nextcloud-aio-onlyoffice",
|
2021-11-30 11:20:42 +01:00
|
|
|
"nextcloud-aio-collabora",
|
2022-03-15 23:46:58 +01:00
|
|
|
"nextcloud-aio-talk",
|
2023-06-15 17:03:20 +02:00
|
|
|
"nextcloud-aio-nextcloud",
|
|
|
|
|
"nextcloud-aio-notify-push"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Apache",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-apache",
|
2021-11-30 11:20:42 +01:00
|
|
|
"ports": [
|
2022-12-25 17:08:41 +01:00
|
|
|
{
|
|
|
|
|
"ip_binding": "%APACHE_IP_BINDING%",
|
|
|
|
|
"port_number": "%APACHE_PORT%",
|
|
|
|
|
"protocol": "tcp"
|
|
|
|
|
}
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "%APACHE_PORT%",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
|
"NEXTCLOUD_HOST=nextcloud-aio-nextcloud",
|
|
|
|
|
"COLLABORA_HOST=nextcloud-aio-collabora",
|
2021-12-08 18:12:56 +01:00
|
|
|
"TALK_HOST=nextcloud-aio-talk",
|
2022-03-17 10:13:21 +01:00
|
|
|
"APACHE_PORT=%APACHE_PORT%",
|
2022-05-18 18:36:51 +02:00
|
|
|
"ONLYOFFICE_HOST=nextcloud-aio-onlyoffice",
|
2022-09-20 18:16:17 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"APACHE_MAX_SIZE=%APACHE_MAX_SIZE%",
|
2023-06-07 15:45:38 +02:00
|
|
|
"APACHE_MAX_TIME=%NEXTCLOUD_MAX_TIME%",
|
|
|
|
|
"NOTIFY_PUSH_HOST=nextcloud-aio-notify-push"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_nextcloud",
|
|
|
|
|
"destination": "/var/www/html",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": false
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_apache",
|
|
|
|
|
"destination": "/mnt/data",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2023-05-17 20:48:08 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"backup_volumes": [
|
|
|
|
|
"nextcloud_aio_nextcloud",
|
|
|
|
|
"nextcloud_aio_apache"
|
2023-05-31 00:21:17 +02:00
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-05-17 20:48:08 +02:00
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-database",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Database",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-postgresql",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"5432"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "5432",
|
2021-11-30 11:20:42 +01:00
|
|
|
"secrets": [
|
|
|
|
|
"DATABASE_PASSWORD"
|
|
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_database",
|
|
|
|
|
"destination": "/var/lib/postgresql/data",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_database_dump",
|
|
|
|
|
"destination": "/mnt/data",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"POSTGRES_PASSWORD=%DATABASE_PASSWORD%",
|
|
|
|
|
"POSTGRES_DB=nextcloud_database",
|
2022-05-18 18:36:51 +02:00
|
|
|
"POSTGRES_USER=nextcloud",
|
2022-05-23 20:16:05 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"PGTZ=%TIMEZONE%"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-25 00:50:17 +01:00
|
|
|
"stop_grace_period": 1800,
|
2023-03-29 10:57:44 +02:00
|
|
|
"restart": "unless-stopped",
|
2023-05-17 20:48:08 +02:00
|
|
|
"shm_size": 268435456,
|
|
|
|
|
"backup_volumes": [
|
|
|
|
|
"nextcloud_aio_database",
|
|
|
|
|
"nextcloud_aio_database_dump"
|
2023-05-31 00:21:17 +02:00
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-05-17 20:48:08 +02:00
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-nextcloud",
|
2022-12-25 00:39:22 +01:00
|
|
|
"depends_on": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"nextcloud-aio-database",
|
2022-08-17 15:09:22 +02:00
|
|
|
"nextcloud-aio-redis",
|
2022-08-26 14:03:18 +02:00
|
|
|
"nextcloud-aio-clamav",
|
|
|
|
|
"nextcloud-aio-fulltextsearch",
|
2023-06-06 14:22:02 +02:00
|
|
|
"nextcloud-aio-talk-recording",
|
2022-08-17 15:09:22 +02:00
|
|
|
"nextcloud-aio-imaginary"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Nextcloud",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-nextcloud",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
2023-06-07 15:45:38 +02:00
|
|
|
"9000"
|
2023-02-02 15:11:40 +01:00
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "9000",
|
2021-11-30 11:20:42 +01:00
|
|
|
"secrets": [
|
|
|
|
|
"DATABASE_PASSWORD",
|
|
|
|
|
"REDIS_PASSWORD",
|
|
|
|
|
"NEXTCLOUD_PASSWORD",
|
|
|
|
|
"TURN_SECRET",
|
|
|
|
|
"SIGNALING_SECRET"
|
|
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_nextcloud",
|
|
|
|
|
"destination": "/var/www/html",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "%NEXTCLOUD_DATADIR%",
|
|
|
|
|
"destination": "/mnt/ncdata",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
2022-02-21 17:31:05 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "%NEXTCLOUD_MOUNT%",
|
|
|
|
|
"destination": "%NEXTCLOUD_MOUNT%",
|
2022-02-21 17:31:05 +01:00
|
|
|
"writeable": true
|
2022-08-31 22:50:19 +02:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "%NEXTCLOUD_TRUSTED_CACERTS_DIR%",
|
|
|
|
|
"destination": "/usr/local/share/ca-certificates",
|
2022-08-31 22:50:19 +02:00
|
|
|
"writeable": false
|
2021-11-30 11:20:42 +01:00
|
|
|
}
|
|
|
|
|
],
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"POSTGRES_HOST=nextcloud-aio-database",
|
|
|
|
|
"POSTGRES_PASSWORD=%DATABASE_PASSWORD%",
|
|
|
|
|
"POSTGRES_DB=nextcloud_database",
|
|
|
|
|
"POSTGRES_USER=nextcloud",
|
|
|
|
|
"REDIS_HOST=nextcloud-aio-redis",
|
|
|
|
|
"REDIS_HOST_PASSWORD=%REDIS_PASSWORD%",
|
|
|
|
|
"AIO_TOKEN=%AIO_TOKEN%",
|
|
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
|
"ADMIN_USER=admin",
|
|
|
|
|
"ADMIN_PASSWORD=%NEXTCLOUD_PASSWORD%",
|
|
|
|
|
"NEXTCLOUD_DATA_DIR=/mnt/ncdata",
|
|
|
|
|
"OVERWRITEHOST=%NC_DOMAIN%",
|
|
|
|
|
"OVERWRITEPROTOCOL=https",
|
|
|
|
|
"TURN_SECRET=%TURN_SECRET%",
|
|
|
|
|
"SIGNALING_SECRET=%SIGNALING_SECRET%",
|
2022-06-07 00:48:30 +02:00
|
|
|
"ONLYOFFICE_SECRET=%ONLYOFFICE_SECRET%",
|
2022-03-14 15:35:37 +01:00
|
|
|
"AIO_URL=%AIO_URL%",
|
2022-03-15 23:46:58 +01:00
|
|
|
"NEXTCLOUD_MOUNT=%NEXTCLOUD_MOUNT%",
|
|
|
|
|
"CLAMAV_ENABLED=%CLAMAV_ENABLED%",
|
2022-03-17 10:13:21 +01:00
|
|
|
"CLAMAV_HOST=nextcloud-aio-clamav",
|
|
|
|
|
"ONLYOFFICE_ENABLED=%ONLYOFFICE_ENABLED%",
|
|
|
|
|
"COLLABORA_ENABLED=%COLLABORA_ENABLED%",
|
2022-04-04 17:28:53 +02:00
|
|
|
"COLLABORA_HOST=nextcloud-aio-collabora",
|
2022-03-22 19:34:16 +01:00
|
|
|
"TALK_ENABLED=%TALK_ENABLED%",
|
2022-04-04 19:12:07 +02:00
|
|
|
"ONLYOFFICE_HOST=nextcloud-aio-onlyoffice",
|
2022-07-10 21:47:25 +02:00
|
|
|
"UPDATE_NEXTCLOUD_APPS=%UPDATE_NEXTCLOUD_APPS%",
|
2022-06-07 00:43:48 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
2022-08-17 15:09:22 +02:00
|
|
|
"TALK_PORT=%TALK_PORT%",
|
|
|
|
|
"IMAGINARY_ENABLED=%IMAGINARY_ENABLED%",
|
2022-08-17 18:34:02 +02:00
|
|
|
"IMAGINARY_HOST=nextcloud-aio-imaginary",
|
2022-08-22 13:04:44 +02:00
|
|
|
"PHP_UPLOAD_LIMIT=%NEXTCLOUD_UPLOAD_LIMIT%",
|
2022-11-09 21:25:10 +01:00
|
|
|
"PHP_MEMORY_LIMIT=%NEXTCLOUD_MEMORY_LIMIT%",
|
2022-08-22 13:04:44 +02:00
|
|
|
"FULLTEXTSEARCH_ENABLED=%FULLTEXTSEARCH_ENABLED%",
|
2022-08-25 14:59:57 +02:00
|
|
|
"FULLTEXTSEARCH_HOST=nextcloud-aio-fulltextsearch",
|
2022-08-31 22:50:19 +02:00
|
|
|
"PHP_MAX_TIME=%NEXTCLOUD_MAX_TIME%",
|
2022-11-09 20:28:50 +01:00
|
|
|
"TRUSTED_CACERTS_DIR=%NEXTCLOUD_TRUSTED_CACERTS_DIR%",
|
2022-11-08 21:38:31 +01:00
|
|
|
"STARTUP_APPS=%NEXTCLOUD_STARTUP_APPS%",
|
|
|
|
|
"ADDITIONAL_APKS=%NEXTCLOUD_ADDITIONAL_APKS%",
|
2023-03-29 17:39:31 +02:00
|
|
|
"ADDITIONAL_PHP_EXTENSIONS=%NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS%",
|
2023-06-05 15:05:14 +02:00
|
|
|
"INSTALL_LATEST_MAJOR=%INSTALL_LATEST_MAJOR%",
|
|
|
|
|
"TALK_RECORDING_ENABLED=%TALK_RECORDING_ENABLED%",
|
2023-06-05 18:44:36 +02:00
|
|
|
"RECORDING_SECRET=%RECORDING_SECRET%",
|
|
|
|
|
"TALK_RECORDING_HOST=nextcloud-aio-talk-recording"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2023-01-03 02:01:03 +01:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"devices": [
|
|
|
|
|
"/dev/dri"
|
2023-05-17 20:48:08 +02:00
|
|
|
],
|
|
|
|
|
"backup_volumes": [
|
|
|
|
|
"nextcloud_aio_nextcloud"
|
2023-05-31 00:21:17 +02:00
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-01-03 02:01:03 +01:00
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
2023-06-07 15:45:38 +02:00
|
|
|
{
|
|
|
|
|
"container_name": "nextcloud-aio-notify-push",
|
|
|
|
|
"display_name": "Notify Push",
|
|
|
|
|
"image": "nextcloud/aio-notify-push",
|
|
|
|
|
"expose": [
|
|
|
|
|
"7867"
|
|
|
|
|
],
|
2023-06-15 16:11:48 +02:00
|
|
|
"internal_port": "7867",
|
2023-06-07 15:45:38 +02:00
|
|
|
"secrets": [
|
|
|
|
|
"REDIS_PASSWORD",
|
|
|
|
|
"POSTGRES_PASSWORD"
|
|
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
|
|
|
|
"source": "nextcloud_aio_nextcloud",
|
|
|
|
|
"destination": "/nextcloud",
|
|
|
|
|
"writeable": false
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"environment": [
|
|
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
|
"NEXTCLOUD_HOST=nextcloud-aio-nextcloud",
|
|
|
|
|
"REDIS_HOST=nextcloud-aio-redis",
|
|
|
|
|
"REDIS_HOST_PASSWORD=%REDIS_PASSWORD%",
|
|
|
|
|
"POSTGRES_HOST=nextcloud-aio-database",
|
|
|
|
|
"POSTGRES_PASSWORD=%DATABASE_PASSWORD%",
|
|
|
|
|
"POSTGRES_DB=nextcloud_database",
|
|
|
|
|
"POSTGRES_USER=nextcloud"
|
|
|
|
|
],
|
|
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
],
|
|
|
|
|
"read_only": true
|
|
|
|
|
},
|
2021-11-30 11:20:42 +01:00
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-redis",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Redis",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-redis",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"6379"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "6379",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-05-18 18:36:51 +02:00
|
|
|
"REDIS_HOST_PASSWORD=%REDIS_PASSWORD%",
|
|
|
|
|
"TZ=%TIMEZONE%"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-09 11:38:33 +01:00
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_redis",
|
|
|
|
|
"destination": "/data",
|
2022-12-09 11:38:33 +01:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2021-11-30 11:20:42 +01:00
|
|
|
"secrets": [
|
2022-06-07 00:48:30 +02:00
|
|
|
"REDIS_PASSWORD",
|
2023-06-06 17:19:29 +02:00
|
|
|
"ONLYOFFICE_SECRET",
|
|
|
|
|
"RECORDING_SECRET"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-05-31 16:56:49 +02:00
|
|
|
],
|
|
|
|
|
"read_only": true
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-collabora",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Collabora",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-collabora",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"9980"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "9980",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-04-13 15:39:32 +02:00
|
|
|
"aliasgroup1=https://%NC_DOMAIN%:443",
|
2023-03-09 17:55:48 +01:00
|
|
|
"extra_params=--o:ssl.enable=false --o:ssl.termination=true --o:mount_jail_tree=false --o:logging.level=warning --o:home_mode.enable=true %COLLABORA_SECCOMP_POLICY% --o:remote_font_config.url=https://%NC_DOMAIN%/apps/richdocuments/settings/fonts.json",
|
2022-06-27 15:29:17 +02:00
|
|
|
"dictionaries=%COLLABORA_DICTIONARIES%",
|
2023-02-06 12:52:54 +01:00
|
|
|
"TZ=%TIMEZONE%",
|
2023-05-01 11:17:36 +02:00
|
|
|
"server_name=%NC_DOMAIN%",
|
|
|
|
|
"DONT_GEN_SSL_CERT=1"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2023-05-01 18:37:33 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"nextcloud_exec_commands": [
|
|
|
|
|
"echo 'Activating collabora config...'",
|
|
|
|
|
"php /var/www/html/occ richdocuments:activate-config"
|
2023-05-31 00:21:17 +02:00
|
|
|
],
|
|
|
|
|
"profiles": [
|
|
|
|
|
"collabora"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-05-01 18:37:33 +02:00
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-talk",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Talk",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-talk",
|
2021-11-30 11:20:42 +01:00
|
|
|
"ports": [
|
2022-12-25 17:08:41 +01:00
|
|
|
{
|
|
|
|
|
"ip_binding": "",
|
|
|
|
|
"port_number": "%TALK_PORT%",
|
|
|
|
|
"protocol": "tcp"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"ip_binding": "",
|
|
|
|
|
"port_number": "%TALK_PORT%",
|
|
|
|
|
"protocol": "udp"
|
|
|
|
|
}
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2023-02-03 10:48:30 +01:00
|
|
|
"expose": [
|
|
|
|
|
"8081"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "%TALK_PORT%",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
|
"TURN_SECRET=%TURN_SECRET%",
|
|
|
|
|
"SIGNALING_SECRET=%SIGNALING_SECRET%",
|
2022-06-07 00:43:48 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
2023-06-05 15:05:14 +02:00
|
|
|
"TALK_PORT=%TALK_PORT%",
|
|
|
|
|
"INTERNAL_SECRET=%TALK_INTERNAL_SECRET%"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
|
|
|
|
"secrets": [
|
|
|
|
|
"TURN_SECRET",
|
2023-06-05 15:05:14 +02:00
|
|
|
"SIGNALING_SECRET",
|
|
|
|
|
"TALK_INTERNAL_SECRET"
|
|
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"profiles": [
|
|
|
|
|
"talk",
|
|
|
|
|
"talk-recording"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
]
|
2023-06-05 15:05:14 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"container_name": "nextcloud-aio-talk-recording",
|
|
|
|
|
"display_name": "Talk Recording",
|
|
|
|
|
"image": "nextcloud/aio-talk-recording",
|
|
|
|
|
"expose": [
|
|
|
|
|
"1234"
|
|
|
|
|
],
|
|
|
|
|
"internal_port": "1234",
|
|
|
|
|
"environment": [
|
|
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"RECORDING_SECRET=%RECORDING_SECRET%",
|
|
|
|
|
"INTERNAL_SECRET=%TALK_INTERNAL_SECRET%"
|
|
|
|
|
],
|
|
|
|
|
"shm_size": 2147483648,
|
|
|
|
|
"secrets": [
|
|
|
|
|
"RECORDING_SECRET",
|
|
|
|
|
"TALK_INTERNAL_SECRET"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"profiles": [
|
|
|
|
|
"talk-recording"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-borgbackup",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-borgbackup",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"BORG_PASSWORD=%BORGBACKUP_PASSWORD%",
|
2021-12-07 19:10:05 +01:00
|
|
|
"BORG_MODE=%BORGBACKUP_MODE%",
|
2022-03-21 13:23:17 +01:00
|
|
|
"SELECTED_RESTORE_TIME=%SELECTED_RESTORE_TIME%",
|
2022-08-22 17:35:03 +02:00
|
|
|
"BACKUP_RESTORE_PASSWORD=%BACKUP_RESTORE_PASSWORD%",
|
|
|
|
|
"ADDITIONAL_DIRECTORIES_BACKUP=%ADDITIONAL_DIRECTORIES_BACKUP%",
|
2023-04-25 09:11:10 +02:00
|
|
|
"BORGBACKUP_HOST_LOCATION=%BORGBACKUP_HOST_LOCATION%",
|
2023-04-27 16:01:16 +02:00
|
|
|
"BORG_HOST_ID=nextcloud-aio-borgbackup",
|
|
|
|
|
"BORG_RETENTION_POLICY=%BORG_RETENTION_POLICY%"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_backup_cache",
|
|
|
|
|
"destination": "/root",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "%NEXTCLOUD_DATADIR%",
|
|
|
|
|
"destination": "/nextcloud_aio_volumes/nextcloud_aio_nextcloud_data",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_mastercontainer",
|
|
|
|
|
"destination": "/nextcloud_aio_volumes/nextcloud_aio_mastercontainer",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "%BORGBACKUP_HOST_LOCATION%",
|
|
|
|
|
"destination": "/mnt/borgbackup",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": true
|
2022-12-12 18:16:24 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_elasticsearch",
|
|
|
|
|
"destination": "/nextcloud_aio_volumes/nextcloud_aio_elasticsearch",
|
2022-12-12 18:16:24 +01:00
|
|
|
"writeable": true
|
2022-12-13 14:32:38 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_redis",
|
|
|
|
|
"destination": "/mnt/redis",
|
2022-12-13 14:32:38 +01:00
|
|
|
"writeable": true
|
2021-11-30 11:20:42 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"secrets": [
|
|
|
|
|
"BORGBACKUP_PASSWORD"
|
2023-01-03 02:01:03 +01:00
|
|
|
],
|
|
|
|
|
"devices": [
|
|
|
|
|
"/dev/fuse"
|
2023-03-06 11:36:36 +01:00
|
|
|
],
|
|
|
|
|
"cap_add": [
|
|
|
|
|
"SYS_ADMIN"
|
2023-04-27 19:24:14 +02:00
|
|
|
],
|
2023-06-15 16:01:07 +02:00
|
|
|
"apparmor_unconfined": true
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-watchtower",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-watchtower",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-11-30 11:20:42 +01:00
|
|
|
"CONTAINER_TO_UPDATE=nextcloud-aio-mastercontainer"
|
|
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2023-04-16 17:47:15 +02:00
|
|
|
"source": "%WATCHTOWER_DOCKER_SOCKET_PATH%",
|
2022-12-30 22:56:37 +01:00
|
|
|
"destination": "/var/run/docker.sock",
|
2021-11-30 11:20:42 +01:00
|
|
|
"writeable": false
|
|
|
|
|
}
|
2023-06-07 16:44:22 +02:00
|
|
|
],
|
|
|
|
|
"read_only": true
|
2021-11-30 11:20:42 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-domaincheck",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-domaincheck",
|
2021-11-30 11:20:42 +01:00
|
|
|
"ports": [
|
2022-12-25 17:08:41 +01:00
|
|
|
{
|
|
|
|
|
"ip_binding": "%APACHE_IP_BINDING%",
|
|
|
|
|
"port_number": "%APACHE_PORT%",
|
|
|
|
|
"protocol": "tcp"
|
|
|
|
|
}
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2021-12-08 18:12:56 +01:00
|
|
|
"INSTANCE_ID=%INSTANCE_ID%",
|
|
|
|
|
"APACHE_PORT=%APACHE_PORT%"
|
2021-11-30 11:20:42 +01:00
|
|
|
],
|
|
|
|
|
"secrets": [
|
|
|
|
|
"INSTANCE_ID"
|
|
|
|
|
],
|
2022-12-30 23:40:19 +01:00
|
|
|
"stop_grace_period": 1
|
2022-03-15 23:46:58 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-clamav",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "ClamAV",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-clamav",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"3310"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "3310",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-12-17 15:33:28 +01:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"CLAMD_STARTUP_TIMEOUT=90"
|
2022-05-18 18:36:51 +02:00
|
|
|
],
|
2022-03-16 14:29:30 +01:00
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_clamav",
|
|
|
|
|
"destination": "/var/lib/clamav",
|
2022-03-16 14:29:30 +01:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"profiles": [
|
|
|
|
|
"clamav"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
]
|
2022-03-17 10:13:21 +01:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-onlyoffice",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "OnlyOffice",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-onlyoffice",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"80"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "80",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-06-07 00:48:30 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"JWT_ENABLED=true",
|
|
|
|
|
"JWT_HEADER=AuthorizationJwt",
|
|
|
|
|
"JWT_SECRET=%ONLYOFFICE_SECRET%"
|
2022-05-18 18:36:51 +02:00
|
|
|
],
|
2022-03-17 10:13:21 +01:00
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_onlyoffice",
|
|
|
|
|
"destination": "/var/lib/onlyoffice",
|
2022-03-17 10:13:21 +01:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2022-06-07 00:48:30 +02:00
|
|
|
"secrets": [
|
|
|
|
|
"ONLYOFFICE_SECRET"
|
|
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"profiles": [
|
|
|
|
|
"onlyoffice"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
]
|
2022-08-17 15:09:22 +02:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-imaginary",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Imaginary",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-imaginary",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"9000"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "9000",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-08-17 15:09:22 +02:00
|
|
|
"TZ=%TIMEZONE%"
|
|
|
|
|
],
|
2023-03-06 11:36:36 +01:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"cap_add": [
|
|
|
|
|
"SYS_NICE"
|
2023-05-31 00:21:17 +02:00
|
|
|
],
|
|
|
|
|
"profiles": [
|
|
|
|
|
"imaginary"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
2023-03-06 11:36:36 +01:00
|
|
|
]
|
2022-08-22 13:04:44 +02:00
|
|
|
},
|
|
|
|
|
{
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": "nextcloud-aio-fulltextsearch",
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": "Fulltextsearch",
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": "nextcloud/aio-fulltextsearch",
|
2023-02-02 15:11:40 +01:00
|
|
|
"expose": [
|
|
|
|
|
"9200"
|
|
|
|
|
],
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": "9200",
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": [
|
2022-08-22 13:04:44 +02:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
|
"discovery.type=single-node",
|
2023-02-01 23:52:28 +01:00
|
|
|
"ES_JAVA_OPTS=-Xms1024M -Xmx1024M",
|
|
|
|
|
"POSTGRES_HOST=nextcloud-aio-database"
|
2022-08-22 13:04:44 +02:00
|
|
|
],
|
|
|
|
|
"volumes": [
|
|
|
|
|
{
|
2022-12-30 22:56:37 +01:00
|
|
|
"source": "nextcloud_aio_elasticsearch",
|
|
|
|
|
"destination": "/usr/share/elasticsearch/data",
|
2022-08-22 13:04:44 +02:00
|
|
|
"writeable": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2023-05-31 00:21:17 +02:00
|
|
|
"restart": "unless-stopped",
|
|
|
|
|
"profiles": [
|
|
|
|
|
"fulltextsearch"
|
|
|
|
|
],
|
|
|
|
|
"networks": [
|
|
|
|
|
"nextcloud-aio"
|
|
|
|
|
]
|
2021-11-30 11:20:42 +01:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|