Skip to content

Commit cdff91b

Browse files
committed
add default bridge for services without network_mode:
1 parent e3f3118 commit cdff91b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+107
-54
lines changed

Apps/BiliBiliToolPro/docker-compose.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ x-casaos:
3737
thumbnail: https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/BiliBiliToolPro/thumbnail.png
3838
tips:
3939
before_install:
40-
en_us: Steps
40+
en_us: |
41+
Steps
4142
4243
1. Create a `cookies.json` file before installing, and run it on the host machine
4344
@@ -54,7 +55,8 @@ x-casaos:
5455
5556
5657
[Documentation](https://github.com/RayWangQvQ/BiliBiliToolPro/blob/main/docker/README.md)
57-
zh_cn: 使用步骤
58+
zh_cn: |
59+
使用步骤
5860
5961
1. 安装前建立**cookies.json**文件,在宿主机运行
6062

Apps/LinkAce/docker-compose.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ x-casaos:
6464
zh_cn: 管理您的书签和链接
6565
tips:
6666
before_install:
67-
en_us: Steps
67+
en_us: |
68+
Steps
6869
6970
1. Create the **.env** file before installation and run it on the host machine
7071
@@ -78,7 +79,8 @@ x-casaos:
7879
7980
8081
[Official documentation](https://www.linkace.org/docs/v1/setup/setup-with-docker/simple/)
81-
zh_cn: 使用步骤
82+
zh_cn: |
83+
使用步骤
8284
8385
1. 安装前建立 **.env** 文件,在宿主机运行
8486

Apps/MariaDB/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ services:
4141
description:
4242
en_us: MariaDB Port
4343
zh_cn: MariaDB 端口
44+
network_mode: bridge
45+
4446
x-casaos:
4547
architectures:
4648
- amd64

Apps/adminer/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ services:
1414
description:
1515
en_us: Adminer HTTP Port
1616
zh_cn: Adminer HTTP 端口
17+
network_mode: bridge
18+
1719
x-casaos:
1820
architectures:
1921
- amd64

Apps/affine/docker-compose.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ services:
33
affine:
44
image: ghcr.io/toeverything/affine-graphql:stable
55
container_name: affine-app
6-
command:
7-
['sh', '-c', 'node ./scripts/self-host-predeploy && node ./dist/index.js']
6+
command: ['sh', '-c', 'node ./scripts/self-host-predeploy && node ./dist/index.js']
87
ports:
98
- "3010:3010"
109
- "5555:5555"
@@ -121,4 +120,4 @@ x-casaos:
121120
title:
122121
en_us: AFFiNE
123122
index: /
124-
port_map: "3010"
123+
port_map: "3010"

Apps/baidunetdisk/docker-compose.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ x-casaos:
3939
zh_cn: VNC运行百度网盘
4040
tips:
4141
before_install:
42-
en_us: "Default access password: `vncpassword`, can be changed by environment variable `VNC_PASSWORD`.
42+
en_us: |
43+
Default access password: `vncpassword`, can be changed by environment variable `VNC_PASSWORD`.
4344
4445
1. default VNC port 5900, if you don't use VNC client to connect you can remove the 5900 mapping.
4546
@@ -48,8 +49,9 @@ x-casaos:
4849
3. Note: If Baidu.com pops up an upgrade prompt inside the container, Please ignore it.
4950
5051
51-
[Project documentation](https://hub.docker.com/r/johngong/baidunetdisk)"
52-
zh_cn: 默认访问密码:`vncpassword`,可通过环境变量`VNC_PASSWORD`修改。
52+
[Project documentation](https://hub.docker.com/r/johngong/baidunetdisk)
53+
zh_cn: |
54+
默认访问密码:`vncpassword`,可通过环境变量`VNC_PASSWORD`修改。
5355
5456
1. 默认VNC端口5900,如果不用VNC客户端连接可删除5900映射。
5557

Apps/cyberchef/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ x-casaos:
3636
title:
3737
en_us: CyberChef
3838
index: /
39-
port_map: "8088"
39+
port_map: "8088"

Apps/dify/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ services:
117117
volumes:
118118
- /DATA/AppData/dify/db/data:/var/lib/postgresql/data
119119
healthcheck:
120-
test: [ "CMD", "pg_isready" ]
120+
test: ["CMD", "pg_isready"]
121121
interval: 1s
122122
timeout: 3s
123123
retries: 30
@@ -135,7 +135,7 @@ services:
135135
- --requirepass
136136
- difyai123456
137137
healthcheck:
138-
test: [ "CMD", "redis-cli", "ping" ]
138+
test: ["CMD", "redis-cli", "ping"]
139139
networks:
140140
- dify
141141

@@ -277,7 +277,7 @@ x-casaos:
277277
- `dify` service
278278
- APP_API_URL
279279
- CONSOLE_API_URL
280-
zh_cn: |
280+
zh_cn: |-
281281
这是 Play 商店源中我适配过最复杂的应用,我做了大量适配工作,但依然无法达到一键安装、开箱即用的状态。
282282
283283
虽然如此,请不要被吓退,放弃体验这个优秀的应用将会是你的损失。
@@ -315,4 +315,4 @@ x-casaos:
315315
- SERVICE_API_URL
316316
- `dify` 服务
317317
- APP_API_URL
318-
- CONSOLE_API_URL
318+
- CONSOLE_API_URL

Apps/dsm/docker-compose.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ x-casaos:
4646
zh_cn: Virtual DSM
4747
tips:
4848
before_install:
49-
en_us: 1. Requires `DATA/AppData` free space 16G+
49+
en_us: |
50+
1. Requires `DATA/AppData` free space 16G+
5051
5152
2. For the safety of your data, please read [documentation](https://hub.docker.com/r/vdsm/virtual-dsm) first
5253
5354
3. The first run will download the system package and initialization online, please be patient, you can check the progress in the container log.
54-
zh_cn: 1. 需要 `/DATA/AppData` 空闲空间 16G+
55+
zh_cn: |
56+
1. 需要 `/DATA/AppData` 空闲空间 16G+
5557
5658
2. 为了你的数据安全,请先阅读 [文档](https://hub.docker.com/r/vdsm/virtual-dsm)
5759

Apps/fast-os-docker/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ services:
2727
- type: bind
2828
source: /DATA/AppData/fastosdocker/data
2929
target: /fast/data
30+
network_mode: bridge
31+
3032
x-casaos:
3133
architectures:
3234
- amd64

Apps/fastgpt/docker-compose.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ x-casaos:
9191
zh_cn: FastGPT
9292
tips:
9393
before_install:
94-
en_us: Installation steps
94+
en_us: |
95+
Installation steps
9596
9697
1. Create the **config.json** file before installation and run it on the host
9798
@@ -105,7 +106,8 @@ x-casaos:
105106
106107
107108
[Documentation](https://doc.fastgpt.in/docs/development/docker/)
108-
zh_cn: 安装步骤
109+
zh_cn: |
110+
安装步骤
109111
110112
1. 安装前先建立**config.json**文件,在宿主机运行
111113
@@ -122,4 +124,4 @@ x-casaos:
122124
custom: null
123125
port_map: '3000'
124126
scheme: http
125-
index: /
127+
index: /

Apps/firefly-iii/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,4 +231,4 @@ x-casaos:
231231
title:
232232
en_us: Firefly III
233233
index: /
234-
port_map: "38080"
234+
port_map: "38080"

Apps/immich/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ services:
7171
interval: 5m
7272
start_interval: 30s
7373
start_period: 5m
74-
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
74+
command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
7575
restart: unless-stopped
7676
networks:
7777
- immich

Apps/laftools/docker-compose.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ services:
1818
resources:
1919
reservations:
2020
memory: 256M
21+
network_mode: bridge
2122

2223
x-casaos:
2324
architectures:
@@ -42,4 +43,4 @@ x-casaos:
4243
en_us: LafTools
4344
zh_cn: 秒达工具箱
4445
index: /
45-
port_map: "39899"
46+
port_map: "39899"

Apps/lancache/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ services:
1717
- target: 53
1818
published: 53
1919
protocol: udp
20+
network_mode: bridge
2021

2122
monolithic:
2223
image: lancachenet/monolithic:latest
@@ -43,6 +44,7 @@ services:
4344
- type: bind
4445
source: /DATA/AppData/lancache/logs
4546
target: /data/logs
47+
network_mode: bridge
4648

4749
x-casaos:
4850
architectures:

Apps/linkstack/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ services:
2424
resources:
2525
reservations:
2626
memory: 256M
27+
network_mode: bridge
2728

2829
x-casaos:
2930
architectures:
@@ -50,7 +51,7 @@ x-casaos:
5051
before_install:
5152
en_us: |
5253
This application does not have persistent storage set by default, which means you will lose your application data once you reset the container!
53-
54+
5455
You can set up file mounts yourself to achieve persistent configuration directories, for more information [please refer](https://github.com/LinkStackOrg/linkstack-docker#persistent-storage)
5556
zh_cn: |
5657
本应用默认没有设置持久化存储,意味着你一旦重置容器,将丢失应用数据!
@@ -59,4 +60,4 @@ x-casaos:
5960
title:
6061
en_us: LinkStack
6162
index: /
62-
port_map: "8081"
63+
port_map: "8081"

Apps/maxkb/docker-compose.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ services:
1515
source: /DATA/AppData/maxkb/data
1616
target: /var/lib/postgresql/data
1717
container_name: maxkb
18+
network_mode: bridge
1819

1920
x-casaos:
2021
architectures:
@@ -43,4 +44,4 @@ x-casaos:
4344
title:
4445
en_us: MaxKB
4546
index: /
46-
port_map: "18080"
47+
port_map: "18080"

Apps/mealie/docker-compose.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ services:
2525
MAX_WORKERS: "1"
2626
WEB_CONCURRENCY: "1"
2727
BASE_URL: https://mealie.yourdomain.com
28+
network_mode: bridge
29+
2830
x-casaos:
2931
architectures:
3032
- arm64
@@ -63,4 +65,4 @@ x-casaos:
6365
title:
6466
en_us: Mealie
6567
index: /
66-
port_map: "9925"
68+
port_map: "9925"

Apps/movie-robot/docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ services:
2727
description:
2828
en_us: "License Key"
2929
zh_cn: "许可证密钥"
30+
network_mode: bridge
3031

3132
x-casaos:
3233
architectures:

Apps/moviepilot/docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ services:
3333
resources:
3434
reservations:
3535
memory: 256M
36+
network_mode: bridge
3637

3738
# networks:
3839
# moviepilot:

Apps/myip/docker-compose.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ services:
1212
resources:
1313
reservations:
1414
memory: 128M
15+
network_mode: bridge
16+
1517
x-casaos:
1618
architectures:
1719
- arm64
@@ -36,4 +38,4 @@ x-casaos:
3638
en_us: MyIP
3739
zh_cn: IP工具箱
3840
index: /
39-
port_map: "18966"
41+
port_map: "18966"

Apps/nextchat/docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ services:
2929
description:
3030
en_us: Override OpenAI API request base URL.
3131
zh_cn: 覆盖 OpenAI API 请求基础 URL。
32+
network_mode: bridge
33+
3234
x-casaos:
3335
architectures:
3436
- amd64

Apps/ntfy/docker-compose.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ services:
2020
resources:
2121
reservations:
2222
memory: 128M
23+
network_mode: bridge
24+
2325
x-casaos:
2426
architectures:
2527
- arm
@@ -43,4 +45,4 @@ x-casaos:
4345
title:
4446
en_us: ntfy
4547
index: /
46-
port_map: "3380"
48+
port_map: "3380"

Apps/one-api/docker-compose.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ services:
1818
resources:
1919
reservations:
2020
memory: 128M
21+
network_mode: bridge
22+
2123
x-casaos:
2224
architectures:
2325
- amd64
@@ -28,15 +30,15 @@ x-casaos:
2830
category: Developer
2931
description:
3032
en_us: OpenAI API management & redistribution system, using a single API for all LLMs, and features an English UI.
31-
zh_cn: OpenAI 接口管理 & 分发系统,支持 Azure、Anthropic Claude、Google PaLM 2 & Gemini、智谱 ChatGLM、百度文心一言、讯飞星火认知、阿里通义千问、360 智脑以及腾讯混元,可用于二次分发管理 key,仅单可执行文件,已打包好 Docker 镜像,一键部署,开箱即用。
33+
zh_cn: OpenAI 接口管理 & 分发系统,支持 Azure、Anthropic Claude、Google PaLM 2 & Gemini、智谱 ChatGLM、百度文心一言、讯飞星火认知、阿里通义千问、360 智脑以及腾讯混元,可用于二次分发管理 key,仅单可执行文件,已打包好 Docker 镜像,一键部署,开箱即用。
3234
developer: songquanpeng
3335
icon: https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/one-api/icon.png
3436
screenshot_link:
3537
- https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/one-api/screenshot-1.png
3638
- https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/one-api/screenshot-2.png
3739
tagline:
3840
en_us: One API for All LLMs
39-
zh_cn: 一个API分发所有大模型
41+
zh_cn: 一个API分发所有大模型
4042
thumbnail: https://cdn.jsdelivr.net/gh/Cp0204/CasaOS-AppStore-Play@main/Apps/one-api/thumbnail.png
4143
title:
4244
zh_cn: One API
@@ -48,7 +50,7 @@ x-casaos:
4850
The initial account username is `root` and the password is `123456`.
4951
5052
**Be sure to change the default password after logging in to the system with the root user for the first time!**
51-
zh_cn: |
53+
zh_cn: |-
5254
初始账号用户名为 `root`,密码为 `123456`。
5355
54-
**使用 root 用户初次登录系统后,务必修改默认密码!**
56+
**使用 root 用户初次登录系统后,务必修改默认密码!**

0 commit comments

Comments
 (0)