-
Hello, I would like to access the Some notes:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, so the most elegant way would be to add a community container: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-add-containers. Feel free to ping me if you should need help on this! Regarding the json, I just leave this here as an example: {
"aio_services_v1": [
{
"container_name": "nextcloud-aio-calcardbackup",
"display_name": "Cal and card backup",
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/calcardbackup",
"image": "waja/calcardbackup",
"image_tag": "latest",
"restart": "unless-stopped",
"environment": [
"INIT_BACKUP=1"
"BACKUP_DIR=/backup",
"NC_DIR=/nextcloud",
"NC_HOST=%NC_DOMAIN%",
"DB_HOST=nextcloud-aio-database",
"DB_PORT=5432"
],
"volumes": [
{
"source": "nextcloud_aio_calcardbackup",
"destination": "/backup",
"writeable": true
},
{
"source": "nextcloud_aio_nextcloud",
"destination": "/nextcloud",
"writeable": false
}
],
"backup_volumes": [
"nextcloud_aio_calcardbackup"
]
}
]
} |
Beta Was this translation helpful? Give feedback.
Hi, so the most elegant way would be to add a community container: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-add-containers. Feel free to ping me if you should need help on this!
Regarding the json, I just leave this here as an example: