2021-11-30 18:20:42 +08:00
|
|
|
{
|
|
|
|
"production": [
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-apache",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [
|
2022-03-17 17:13:21 +08:00
|
|
|
"nextcloud-aio-onlyoffice",
|
2021-11-30 18:20:42 +08:00
|
|
|
"nextcloud-aio-collabora",
|
2022-03-16 06:46:58 +08:00
|
|
|
"nextcloud-aio-talk",
|
2022-03-17 17:13:21 +08:00
|
|
|
"nextcloud-aio-nextcloud"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"displayName": "Apache",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-apache",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [
|
2021-12-09 01:12:56 +08:00
|
|
|
"%APACHE_PORT%/tcp"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"internalPorts": [
|
2021-12-09 01:12:56 +08:00
|
|
|
"%APACHE_PORT%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"secrets": [],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
"NEXTCLOUD_HOST=nextcloud-aio-nextcloud",
|
|
|
|
"COLLABORA_HOST=nextcloud-aio-collabora",
|
2021-12-09 01:12:56 +08:00
|
|
|
"TALK_HOST=nextcloud-aio-talk",
|
2022-03-17 17:13:21 +08:00
|
|
|
"APACHE_PORT=%APACHE_PORT%",
|
2022-05-19 00:36:51 +08:00
|
|
|
"ONLYOFFICE_HOST=nextcloud-aio-onlyoffice",
|
2022-09-21 00:16:17 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"APACHE_MAX_SIZE=%APACHE_MAX_SIZE%",
|
|
|
|
"APACHE_MAX_TIME=%NEXTCLOUD_MAX_TIME%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_nextcloud",
|
|
|
|
"location": "/var/www/html",
|
|
|
|
"writeable": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_apache",
|
|
|
|
"location": "/mnt/data",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-database",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Database",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-postgresql",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"5432"
|
|
|
|
],
|
|
|
|
"secrets": [
|
|
|
|
"DATABASE_PASSWORD"
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_database",
|
|
|
|
"location": "/var/lib/postgresql/data",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_database_dump",
|
|
|
|
"location": "/mnt/data",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"POSTGRES_PASSWORD=%DATABASE_PASSWORD%",
|
|
|
|
"POSTGRES_DB=nextcloud_database",
|
2022-05-19 00:36:51 +08:00
|
|
|
"POSTGRES_USER=nextcloud",
|
2022-05-24 02:16:05 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"PGTZ=%TIMEZONE%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 1800,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-nextcloud",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"nextcloud-aio-database",
|
2022-08-17 21:09:22 +08:00
|
|
|
"nextcloud-aio-redis",
|
2022-08-26 20:03:18 +08:00
|
|
|
"nextcloud-aio-clamav",
|
|
|
|
"nextcloud-aio-fulltextsearch",
|
2022-08-17 21:09:22 +08:00
|
|
|
"nextcloud-aio-imaginary"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"displayName": "Nextcloud",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-nextcloud",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"9000"
|
|
|
|
],
|
|
|
|
"secrets": [
|
|
|
|
"DATABASE_PASSWORD",
|
|
|
|
"REDIS_PASSWORD",
|
|
|
|
"NEXTCLOUD_PASSWORD",
|
|
|
|
"TURN_SECRET",
|
|
|
|
"SIGNALING_SECRET"
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_nextcloud",
|
|
|
|
"location": "/var/www/html",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
2022-03-08 23:49:13 +08:00
|
|
|
"name": "%NEXTCLOUD_DATADIR%",
|
2021-11-30 18:20:42 +08:00
|
|
|
"location": "/mnt/ncdata",
|
|
|
|
"writeable": true
|
2022-02-22 00:31:05 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "%NEXTCLOUD_MOUNT%",
|
|
|
|
"location": "%NEXTCLOUD_MOUNT%",
|
|
|
|
"writeable": true
|
2022-09-01 04:50:19 +08:00
|
|
|
},
|
|
|
|
{
|
2022-11-10 03:28:50 +08:00
|
|
|
"name": "%NEXTCLOUD_TRUSTED_CACERTS_DIR%",
|
2022-09-01 04:50:19 +08:00
|
|
|
"location": "/usr/local/share/ca-certificates",
|
|
|
|
"writeable": false
|
2021-11-30 18:20:42 +08:00
|
|
|
}
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08: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 06:48:30 +08:00
|
|
|
"ONLYOFFICE_SECRET=%ONLYOFFICE_SECRET%",
|
2022-03-14 22:35:37 +08:00
|
|
|
"AIO_URL=%AIO_URL%",
|
2022-03-16 06:46:58 +08:00
|
|
|
"NEXTCLOUD_MOUNT=%NEXTCLOUD_MOUNT%",
|
|
|
|
"CLAMAV_ENABLED=%CLAMAV_ENABLED%",
|
2022-03-17 17:13:21 +08:00
|
|
|
"CLAMAV_HOST=nextcloud-aio-clamav",
|
|
|
|
"ONLYOFFICE_ENABLED=%ONLYOFFICE_ENABLED%",
|
|
|
|
"COLLABORA_ENABLED=%COLLABORA_ENABLED%",
|
2022-04-04 23:28:53 +08:00
|
|
|
"COLLABORA_HOST=nextcloud-aio-collabora",
|
2022-03-23 02:34:16 +08:00
|
|
|
"TALK_ENABLED=%TALK_ENABLED%",
|
2022-04-05 01:12:07 +08:00
|
|
|
"ONLYOFFICE_HOST=nextcloud-aio-onlyoffice",
|
2022-07-11 03:47:25 +08:00
|
|
|
"UPDATE_NEXTCLOUD_APPS=%UPDATE_NEXTCLOUD_APPS%",
|
2022-06-07 06:43:48 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
2022-08-17 21:09:22 +08:00
|
|
|
"TALK_PORT=%TALK_PORT%",
|
|
|
|
"IMAGINARY_ENABLED=%IMAGINARY_ENABLED%",
|
2022-08-18 00:34:02 +08:00
|
|
|
"IMAGINARY_HOST=nextcloud-aio-imaginary",
|
2022-08-22 19:04:44 +08:00
|
|
|
"PHP_UPLOAD_LIMIT=%NEXTCLOUD_UPLOAD_LIMIT%",
|
2022-11-10 04:25:10 +08:00
|
|
|
"PHP_MEMORY_LIMIT=%NEXTCLOUD_MEMORY_LIMIT%",
|
2022-08-22 19:04:44 +08:00
|
|
|
"FULLTEXTSEARCH_ENABLED=%FULLTEXTSEARCH_ENABLED%",
|
2022-08-25 20:59:57 +08:00
|
|
|
"FULLTEXTSEARCH_HOST=nextcloud-aio-fulltextsearch",
|
2022-09-01 04:50:19 +08:00
|
|
|
"PHP_MAX_TIME=%NEXTCLOUD_MAX_TIME%",
|
2022-11-10 03:28:50 +08:00
|
|
|
"TRUSTED_CACERTS_DIR=%NEXTCLOUD_TRUSTED_CACERTS_DIR%",
|
2022-11-09 04:38:31 +08:00
|
|
|
"STARTUP_APPS=%NEXTCLOUD_STARTUP_APPS%",
|
|
|
|
"ADDITIONAL_APKS=%NEXTCLOUD_ADDITIONAL_APKS%",
|
|
|
|
"ADDITIONAL_PHP_EXTENSIONS=%NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-redis",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Redis",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-redis",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"6379"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-05-19 00:36:51 +08:00
|
|
|
"REDIS_HOST_PASSWORD=%REDIS_PASSWORD%",
|
|
|
|
"TZ=%TIMEZONE%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-09 18:38:33 +08:00
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_redis",
|
|
|
|
"location": "/data",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2021-11-30 18:20:42 +08:00
|
|
|
"secrets": [
|
2022-06-07 06:48:30 +08:00
|
|
|
"REDIS_PASSWORD",
|
|
|
|
"ONLYOFFICE_SECRET"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-collabora",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Collabora",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-collabora",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"9980"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-04-13 21:39:32 +08:00
|
|
|
"aliasgroup1=https://%NC_DOMAIN%:443",
|
2022-09-14 17:21:23 +08:00
|
|
|
"extra_params=--o:ssl.enable=false --o:ssl.termination=true --o:logging.level=warning --o:home_mode.enable=true %COLLABORA_SECCOMP_POLICY%",
|
2022-06-27 21:29:17 +08:00
|
|
|
"dictionaries=%COLLABORA_DICTIONARIES%",
|
2022-05-19 00:36:51 +08:00
|
|
|
"TZ=%TIMEZONE%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-09 18:43:50 +08:00
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_collabora_fonts",
|
|
|
|
"location": "/opt/cool/systemplate/tmpfonts",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2021-11-30 18:20:42 +08:00
|
|
|
"secrets": [],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-talk",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Talk",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-talk",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [
|
2022-06-07 06:43:48 +08:00
|
|
|
"%TALK_PORT%/tcp",
|
|
|
|
"%TALK_PORT%/udp"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"internalPorts": [
|
2022-06-07 06:43:48 +08:00
|
|
|
"%TALK_PORT%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"NC_DOMAIN=%NC_DOMAIN%",
|
|
|
|
"TURN_SECRET=%TURN_SECRET%",
|
|
|
|
"SIGNALING_SECRET=%SIGNALING_SECRET%",
|
2022-05-19 00:36:51 +08:00
|
|
|
"JANUS_API_KEY=%JANUS_API_KEY%",
|
2022-06-07 06:43:48 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"TALK_PORT=%TALK_PORT%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"volumes": [],
|
|
|
|
"secrets": [
|
|
|
|
"TURN_SECRET",
|
|
|
|
"SIGNALING_SECRET",
|
|
|
|
"JANUS_API_KEY"
|
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-borgbackup",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Borgbackup",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-borgbackup",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"BORG_PASSWORD=%BORGBACKUP_PASSWORD%",
|
2021-12-08 02:10:05 +08:00
|
|
|
"BORG_MODE=%BORGBACKUP_MODE%",
|
2022-03-21 20:23:17 +08:00
|
|
|
"SELECTED_RESTORE_TIME=%SELECTED_RESTORE_TIME%",
|
2022-08-22 23:35:03 +08:00
|
|
|
"BACKUP_RESTORE_PASSWORD=%BACKUP_RESTORE_PASSWORD%",
|
|
|
|
"ADDITIONAL_DIRECTORIES_BACKUP=%ADDITIONAL_DIRECTORIES_BACKUP%",
|
|
|
|
"BORGBACKUP_HOST_LOCATION=%BORGBACKUP_HOST_LOCATION%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_backup_cache",
|
|
|
|
"location": "/root",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_nextcloud",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_nextcloud",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
2022-03-08 23:49:13 +08:00
|
|
|
"name": "%NEXTCLOUD_DATADIR%",
|
2021-11-30 18:20:42 +08:00
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_nextcloud_data",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_database",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_database",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_database_dump",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_database_dump",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_apache",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_apache",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_mastercontainer",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_mastercontainer",
|
|
|
|
"writeable": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "%BORGBACKUP_HOST_LOCATION%",
|
|
|
|
"location": "/mnt/borgbackup",
|
|
|
|
"writeable": true
|
2022-12-13 01:16:24 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_elasticsearch",
|
|
|
|
"location": "/nextcloud_aio_volumes/nextcloud_aio_elasticsearch",
|
|
|
|
"writeable": true
|
2022-12-13 21:32:38 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_redis",
|
|
|
|
"location": "/mnt/redis",
|
|
|
|
"writeable": true
|
2021-11-30 18:20:42 +08:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"secrets": [
|
|
|
|
"BORGBACKUP_PASSWORD"
|
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": ""
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-watchtower",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Watchtower",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-watchtower",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-11-30 18:20:42 +08:00
|
|
|
"CONTAINER_TO_UPDATE=nextcloud-aio-mastercontainer"
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
2022-05-14 00:46:34 +08:00
|
|
|
"name": "%DOCKER_SOCKET_PATH%",
|
2021-11-30 18:20:42 +08:00
|
|
|
"location": "/var/run/docker.sock",
|
|
|
|
"writeable": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"secrets": [],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": ""
|
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-domaincheck",
|
2021-11-30 18:20:42 +08:00
|
|
|
"displayName": "Domaincheck",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-domaincheck",
|
2021-11-30 18:20:42 +08:00
|
|
|
"ports": [
|
2021-12-09 01:12:56 +08:00
|
|
|
"%APACHE_PORT%/tcp"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"internalPorts": [],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2021-12-09 01:12:56 +08:00
|
|
|
"INSTANCE_ID=%INSTANCE_ID%",
|
|
|
|
"APACHE_PORT=%APACHE_PORT%"
|
2021-11-30 18:20:42 +08:00
|
|
|
],
|
|
|
|
"volumes": [],
|
|
|
|
"secrets": [
|
|
|
|
"INSTANCE_ID"
|
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 1,
|
2021-11-30 18:20:42 +08:00
|
|
|
"restartPolicy": ""
|
2022-03-16 06:46:58 +08:00
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-clamav",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2022-03-16 06:46:58 +08:00
|
|
|
"displayName": "ClamAV",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-clamav",
|
2022-03-16 06:46:58 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"3310"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-12-17 22:33:28 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"CLAMD_STARTUP_TIMEOUT=90"
|
2022-05-19 00:36:51 +08:00
|
|
|
],
|
2022-03-16 21:29:30 +08:00
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_clamav",
|
|
|
|
"location": "/var/lib/clamav",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2022-03-16 06:46:58 +08:00
|
|
|
"secrets": [],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2022-03-16 06:46:58 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
2022-03-17 17:13:21 +08:00
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-onlyoffice",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2022-03-17 17:13:21 +08:00
|
|
|
"displayName": "OnlyOffice",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-onlyoffice",
|
2022-03-17 17:13:21 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"80"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-06-07 06:48:30 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"JWT_ENABLED=true",
|
|
|
|
"JWT_HEADER=AuthorizationJwt",
|
|
|
|
"JWT_SECRET=%ONLYOFFICE_SECRET%"
|
2022-05-19 00:36:51 +08:00
|
|
|
],
|
2022-03-17 17:13:21 +08:00
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_onlyoffice",
|
|
|
|
"location": "/var/lib/onlyoffice",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
2022-06-07 06:48:30 +08:00
|
|
|
"secrets": [
|
|
|
|
"ONLYOFFICE_SECRET"
|
|
|
|
],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2022-03-17 17:13:21 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
2022-08-17 21:09:22 +08:00
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-imaginary",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2022-08-17 21:09:22 +08:00
|
|
|
"displayName": "Imaginary",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-imaginary",
|
2022-08-17 21:09:22 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"9000"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-08-17 21:09:22 +08:00
|
|
|
"TZ=%TIMEZONE%"
|
|
|
|
],
|
|
|
|
"volumes": [],
|
|
|
|
"secrets": [],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2022-08-17 21:09:22 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
2022-08-22 19:04:44 +08:00
|
|
|
},
|
|
|
|
{
|
2022-12-25 07:36:19 +08:00
|
|
|
"container_name": "nextcloud-aio-fulltextsearch",
|
2022-12-25 07:39:22 +08:00
|
|
|
"depends_on": [],
|
2022-08-22 19:04:44 +08:00
|
|
|
"displayName": "Fulltextsearch",
|
2022-12-25 07:43:26 +08:00
|
|
|
"image": "nextcloud/aio-fulltextsearch",
|
2022-08-22 19:04:44 +08:00
|
|
|
"ports": [],
|
|
|
|
"internalPorts": [
|
|
|
|
"9200"
|
|
|
|
],
|
2022-12-25 07:48:24 +08:00
|
|
|
"environment": [
|
2022-08-22 19:04:44 +08:00
|
|
|
"TZ=%TIMEZONE%",
|
|
|
|
"discovery.type=single-node",
|
|
|
|
"ES_JAVA_OPTS=-Xms1024M -Xmx1024M"
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "nextcloud_aio_elasticsearch",
|
|
|
|
"location": "/usr/share/elasticsearch/data",
|
|
|
|
"writeable": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"secrets": [],
|
2022-12-25 07:50:17 +08:00
|
|
|
"stop_grace_period": 10,
|
2022-08-22 19:04:44 +08:00
|
|
|
"restartPolicy": "unless-stopped"
|
2021-11-30 18:20:42 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|