update `port_map` to fix wrong web UI port and minimize potential port conflicts (#33)

Signed-off-by: Tiger Wang <tigerwang@outlook.com>
This commit is contained in:
Tiger Wang 2023-04-20 09:25:32 -04:00 committed by GitHub
parent 3c35559c8f
commit bd8372b074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 29 additions and 25 deletions

View File

@ -15,7 +15,7 @@ services:
published: "53" published: "53"
protocol: udp protocol: udp
- target: 3000 - target: 3000
published: "3000" published: "3001"
protocol: tcp protocol: tcp
- target: 853 - target: 853
published: "853" published: "853"
@ -33,7 +33,7 @@ services:
target: /opt/adguardhome/conf target: /opt/adguardhome/conf
x-casaos: x-casaos:
index: / index: /
port_map: "3000" port_map: "3001"
ports: ports:
- container: "53" - container: "53"
description: description:

View File

@ -9,12 +9,12 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "10480"
protocol: tcp protocol: tcp
restart: always restart: always
x-casaos: x-casaos:
index: / index: /
port_map: "80" port_map: "10480"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -13,7 +13,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "10180"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -38,7 +38,7 @@ services:
en_us: Run FileBrowser as specified gid. en_us: Run FileBrowser as specified gid.
zh_cn: 以指定的组ID运行FileBrowser zh_cn: 以指定的组ID运行FileBrowser
index: / index: /
port_map: "80" port_map: "10180"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -12,7 +12,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3000 - target: 3000
published: "3000" published: "3002"
protocol: tcp protocol: tcp
- target: 22 - target: 22
published: "222" published: "222"
@ -33,7 +33,7 @@ services:
en_us: The GID (Unix group ID) of the user that runs Gitea en_us: The GID (Unix group ID) of the user that runs Gitea
zh_cn: Gitea 运行的用户的 GIDUnix 组 ID zh_cn: Gitea 运行的用户的 GIDUnix 组 ID
index: / index: /
port_map: "3000" port_map: "3002"
ports: ports:
- container: "3000" - container: "3000"
description: description:

View File

@ -9,12 +9,12 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3000 - target: 3000
published: "3000" published: "3003"
protocol: tcp protocol: tcp
restart: always restart: always
x-casaos: x-casaos:
index: / index: /
port_map: "3000" port_map: "3003"
ports: ports:
- container: "3000" - container: "3000"
description: description:

View File

@ -21,7 +21,7 @@ services:
target: /var/www/html target: /var/www/html
x-casaos: x-casaos:
index: / index: /
port_map: "80" port_map: "10080"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -9,12 +9,12 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3000 - target: 3000
published: "3000" published: "3004"
protocol: tcp protocol: tcp
restart: always restart: always
x-casaos: x-casaos:
index: / index: /
port_map: "3000" port_map: "3004"
ports: ports:
- container: "3000" - container: "3000"
description: description:

View File

@ -54,7 +54,7 @@ services:
description: description:
en_us: Pi-hole PROXY_LOCATION en_us: Pi-hole PROXY_LOCATION
index: /admin index: /admin
port_map: "80" port_map: "8800"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -13,7 +13,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8080 - target: 8080
published: "8080" published: "8282"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -37,7 +37,7 @@ services:
- container: TZ - container: TZ
description: description:
en_us: "" en_us: ""
port_map: "8080" port_map: "8282"
ports: ports:
- container: "8080" - container: "8080"
description: description:

View File

@ -13,7 +13,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "10280"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -34,7 +34,7 @@ services:
- container: TZ - container: TZ
description: description:
en_us: "" en_us: ""
port_map: "80" port_map: "10280"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -105,12 +105,16 @@ x-casaos:
After install: After install:
Go to the container log and connect to your tailscale account using the link provided Go to the container log and connect to your tailscale account using the link provided
NOTE: The default port for this app is 80, which might conflict with CasaOS. Consider changing CasaOS port before installing.
zh_cn: | zh_cn: |
Tailscale 主机名:`casaos` Tailscale 主机名:`casaos`
安装后: 安装后:
前往容器日志并使用提供的链接连接到您的 tailscale 帐户 前往容器日志并使用提供的链接连接到您的 tailscale 帐户
注意:此应用程序的默认端口为 80这可能与 CasaOS 冲突。在安装之前考虑更改 CasaOS 端口。
title: title:
en_us: Tailscale Daemon en_us: Tailscale Daemon
zh_cn: Tailscale 守护进程 zh_cn: Tailscale 守护进程

View File

@ -20,7 +20,7 @@ services:
published: "10001" published: "10001"
protocol: udp protocol: udp
- target: 8080 - target: 8080
published: "8080" published: "8383"
protocol: tcp protocol: tcp
- target: 8443 - target: 8443
published: "8443" published: "8443"
@ -60,7 +60,7 @@ services:
description: description:
en_us: "" en_us: ""
index: / index: /
port_map: "8080" port_map: "8383"
ports: ports:
- container: "3478" - container: "3478"
description: description:

View File

@ -9,7 +9,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "10380"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -18,7 +18,7 @@ services:
target: /data target: /data
x-casaos: x-casaos:
index: / index: /
port_map: "80" port_map: "10380"
ports: ports:
- container: "80" - container: "80"
description: description:

View File

@ -25,7 +25,7 @@ services:
en_us: TimeZone en_us: TimeZone
zh_cn: 时区 zh_cn: 时区
index: / index: /
port_map: "3000" port_map: "3009"
ports: ports:
- container: "3000" - container: "3000"
description: description:

View File

@ -14,7 +14,7 @@ services:
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8080 - target: 8080
published: "8080" published: "8181"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -43,7 +43,7 @@ services:
en_us: Run qBittorrent as specified UMASK. en_us: Run qBittorrent as specified UMASK.
zh_cn: 以指定的 UMASK 运行 qBittorrent。 zh_cn: 以指定的 UMASK 运行 qBittorrent。
index: / index: /
port_map: "8080" port_map: "8181"
ports: ports:
- container: "8080" - container: "8080"
description: description: