mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-24 00:16:50 +00:00
internal_ports should be a string and not an array
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
53065b5631
commit
54f61eba68
8 changed files with 32 additions and 81 deletions
|
|
@ -13,9 +13,7 @@
|
|||
"ports": [
|
||||
"%APACHE_PORT%/tcp"
|
||||
],
|
||||
"internal_ports": [
|
||||
"%APACHE_PORT%"
|
||||
],
|
||||
"internal_port": "%APACHE_PORT%",
|
||||
"secrets": [],
|
||||
"environment": [
|
||||
"NC_DOMAIN=%NC_DOMAIN%",
|
||||
|
|
@ -49,9 +47,7 @@
|
|||
"display_name": "Database",
|
||||
"image": "nextcloud/aio-postgresql",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"5432"
|
||||
],
|
||||
"internal_port": "5432",
|
||||
"secrets": [
|
||||
"DATABASE_PASSWORD"
|
||||
],
|
||||
|
|
@ -89,9 +85,7 @@
|
|||
"display_name": "Nextcloud",
|
||||
"image": "nextcloud/aio-nextcloud",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"9000"
|
||||
],
|
||||
"internal_port": "9000",
|
||||
"secrets": [
|
||||
"DATABASE_PASSWORD",
|
||||
"REDIS_PASSWORD",
|
||||
|
|
@ -171,9 +165,7 @@
|
|||
"display_name": "Redis",
|
||||
"image": "nextcloud/aio-redis",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"6379"
|
||||
],
|
||||
"internal_port": "6379",
|
||||
"environment": [
|
||||
"REDIS_HOST_PASSWORD=%REDIS_PASSWORD%",
|
||||
"TZ=%TIMEZONE%"
|
||||
|
|
@ -198,9 +190,7 @@
|
|||
"display_name": "Collabora",
|
||||
"image": "nextcloud/aio-collabora",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"9980"
|
||||
],
|
||||
"internal_port": "9980",
|
||||
"environment": [
|
||||
"aliasgroup1=https://%NC_DOMAIN%:443",
|
||||
"extra_params=--o:ssl.enable=false --o:ssl.termination=true --o:logging.level=warning --o:home_mode.enable=true %COLLABORA_SECCOMP_POLICY%",
|
||||
|
|
@ -227,9 +217,7 @@
|
|||
"%TALK_PORT%/tcp",
|
||||
"%TALK_PORT%/udp"
|
||||
],
|
||||
"internal_ports": [
|
||||
"%TALK_PORT%"
|
||||
],
|
||||
"internal_port": "%TALK_PORT%",
|
||||
"environment": [
|
||||
"NC_DOMAIN=%NC_DOMAIN%",
|
||||
"TURN_SECRET=%TURN_SECRET%",
|
||||
|
|
@ -253,7 +241,7 @@
|
|||
"display_name": "Borgbackup",
|
||||
"image": "nextcloud/aio-borgbackup",
|
||||
"ports": [],
|
||||
"internal_ports": [],
|
||||
"internal_port": "",
|
||||
"environment": [
|
||||
"BORG_PASSWORD=%BORGBACKUP_PASSWORD%",
|
||||
"BORG_MODE=%BORGBACKUP_MODE%",
|
||||
|
|
@ -326,7 +314,7 @@
|
|||
"display_name": "Watchtower",
|
||||
"image": "nextcloud/aio-watchtower",
|
||||
"ports": [],
|
||||
"internal_ports": [],
|
||||
"internal_port": "",
|
||||
"environment": [
|
||||
"CONTAINER_TO_UPDATE=nextcloud-aio-mastercontainer"
|
||||
],
|
||||
|
|
@ -349,7 +337,7 @@
|
|||
"ports": [
|
||||
"%APACHE_PORT%/tcp"
|
||||
],
|
||||
"internal_ports": [],
|
||||
"internal_port": "",
|
||||
"environment": [
|
||||
"INSTANCE_ID=%INSTANCE_ID%",
|
||||
"APACHE_PORT=%APACHE_PORT%"
|
||||
|
|
@ -367,9 +355,7 @@
|
|||
"display_name": "ClamAV",
|
||||
"image": "nextcloud/aio-clamav",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"3310"
|
||||
],
|
||||
"internal_port": "3310",
|
||||
"environment": [
|
||||
"TZ=%TIMEZONE%",
|
||||
"CLAMD_STARTUP_TIMEOUT=90"
|
||||
|
|
@ -391,9 +377,7 @@
|
|||
"display_name": "OnlyOffice",
|
||||
"image": "nextcloud/aio-onlyoffice",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"80"
|
||||
],
|
||||
"internal_port": "80",
|
||||
"environment": [
|
||||
"TZ=%TIMEZONE%",
|
||||
"JWT_ENABLED=true",
|
||||
|
|
@ -419,9 +403,7 @@
|
|||
"display_name": "Imaginary",
|
||||
"image": "nextcloud/aio-imaginary",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"9000"
|
||||
],
|
||||
"internal_port": "9000",
|
||||
"environment": [
|
||||
"TZ=%TIMEZONE%"
|
||||
],
|
||||
|
|
@ -436,9 +418,7 @@
|
|||
"display_name": "Fulltextsearch",
|
||||
"image": "nextcloud/aio-fulltextsearch",
|
||||
"ports": [],
|
||||
"internal_ports": [
|
||||
"9200"
|
||||
],
|
||||
"internal_port": "9200",
|
||||
"environment": [
|
||||
"TZ=%TIMEZONE%",
|
||||
"discovery.type=single-node",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue