fix nextcloud loading issue by avoiding unsafe port 10080
Signed-off-by: Tiger Wang <tigerwang@outlook.com>
This commit is contained in:
parent
17ca202341
commit
f3cf0dfcdb
|
@ -43,7 +43,7 @@
|
||||||
"ports": [
|
"ports": [
|
||||||
{
|
{
|
||||||
"container": "80",
|
"container": "80",
|
||||||
"host": "10080",
|
"host": "10081",
|
||||||
"type": "tcp",
|
"type": "tcp",
|
||||||
"allocation": "preferred",
|
"allocation": "preferred",
|
||||||
"configurable": "advanced",
|
"configurable": "advanced",
|
||||||
|
|
|
@ -9,7 +9,7 @@ services:
|
||||||
network_mode: bridge
|
network_mode: bridge
|
||||||
ports:
|
ports:
|
||||||
- target: 80
|
- target: 80
|
||||||
published: "10080"
|
published: "10081"
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
- target: 443
|
- target: 443
|
||||||
published: "10443"
|
published: "10443"
|
||||||
|
@ -87,4 +87,4 @@ x-casaos:
|
||||||
title:
|
title:
|
||||||
en_us: Nextcloud
|
en_us: Nextcloud
|
||||||
index: /
|
index: /
|
||||||
port_map: "10080"
|
port_map: "10081"
|
||||||
|
|
Loading…
Reference in New Issue