mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-25 17:06:55 +00:00
add init flag to all containers
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
1b1626fe56
commit
4c0e30d49d
9 changed files with 39 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
],
|
||||
"display_name": "Apache",
|
||||
"image": "nextcloud/aio-apache",
|
||||
"init": true,
|
||||
"ports": [
|
||||
{
|
||||
"ip_binding": "%APACHE_IP_BINDING%",
|
||||
|
|
@ -69,6 +70,7 @@
|
|||
"container_name": "nextcloud-aio-database",
|
||||
"display_name": "Database",
|
||||
"image": "nextcloud/aio-postgresql",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"5432"
|
||||
],
|
||||
|
|
@ -122,6 +124,7 @@
|
|||
],
|
||||
"display_name": "Nextcloud",
|
||||
"image": "nextcloud/aio-nextcloud",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"9000"
|
||||
],
|
||||
|
|
@ -218,6 +221,7 @@
|
|||
"container_name": "nextcloud-aio-notify-push",
|
||||
"display_name": "Notify Push",
|
||||
"image": "nextcloud/aio-notify-push",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"7867"
|
||||
],
|
||||
|
|
@ -253,6 +257,7 @@
|
|||
"container_name": "nextcloud-aio-redis",
|
||||
"display_name": "Redis",
|
||||
"image": "nextcloud/aio-redis",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"6379"
|
||||
],
|
||||
|
|
@ -283,6 +288,7 @@
|
|||
"container_name": "nextcloud-aio-collabora",
|
||||
"display_name": "Collabora",
|
||||
"image": "nextcloud/aio-collabora",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"9980"
|
||||
],
|
||||
|
|
@ -311,6 +317,7 @@
|
|||
"container_name": "nextcloud-aio-talk",
|
||||
"display_name": "Talk",
|
||||
"image": "nextcloud/aio-talk",
|
||||
"init": true,
|
||||
"ports": [
|
||||
{
|
||||
"ip_binding": "",
|
||||
|
|
@ -361,6 +368,7 @@
|
|||
"container_name": "nextcloud-aio-talk-recording",
|
||||
"display_name": "Talk Recording",
|
||||
"image": "nextcloud/aio-talk-recording",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"1234"
|
||||
],
|
||||
|
|
@ -392,6 +400,7 @@
|
|||
{
|
||||
"container_name": "nextcloud-aio-borgbackup",
|
||||
"image": "nextcloud/aio-borgbackup",
|
||||
"init": true,
|
||||
"environment": [
|
||||
"BORG_PASSWORD=%BORGBACKUP_PASSWORD%",
|
||||
"BORG_MODE=%BORGBACKUP_MODE%",
|
||||
|
|
@ -453,6 +462,7 @@
|
|||
{
|
||||
"container_name": "nextcloud-aio-watchtower",
|
||||
"image": "nextcloud/aio-watchtower",
|
||||
"init": true,
|
||||
"environment": [
|
||||
"CONTAINER_TO_UPDATE=nextcloud-aio-mastercontainer"
|
||||
],
|
||||
|
|
@ -468,6 +478,7 @@
|
|||
{
|
||||
"container_name": "nextcloud-aio-domaincheck",
|
||||
"image": "nextcloud/aio-domaincheck",
|
||||
"init": true,
|
||||
"ports": [
|
||||
{
|
||||
"ip_binding": "%APACHE_IP_BINDING%",
|
||||
|
|
@ -494,6 +505,7 @@
|
|||
"container_name": "nextcloud-aio-clamav",
|
||||
"display_name": "ClamAV",
|
||||
"image": "nextcloud/aio-clamav",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"3310"
|
||||
],
|
||||
|
|
@ -527,6 +539,7 @@
|
|||
"container_name": "nextcloud-aio-onlyoffice",
|
||||
"display_name": "OnlyOffice",
|
||||
"image": "nextcloud/aio-onlyoffice",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"80"
|
||||
],
|
||||
|
|
@ -559,6 +572,7 @@
|
|||
"container_name": "nextcloud-aio-imaginary",
|
||||
"display_name": "Imaginary",
|
||||
"image": "nextcloud/aio-imaginary",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"9000"
|
||||
],
|
||||
|
|
@ -585,6 +599,7 @@
|
|||
"container_name": "nextcloud-aio-fulltextsearch",
|
||||
"display_name": "Fulltextsearch",
|
||||
"image": "nextcloud/aio-fulltextsearch",
|
||||
"init": true,
|
||||
"expose": [
|
||||
"9200"
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue