-
Notifications
You must be signed in to change notification settings - Fork 92
Closed as not planned
Closed as not planned
Copy link
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the Bug
在公网可以正常使用,但reactflux和Miniflux 加入同一个Docker 网络,使用Docker 的内部 DNS 解析,无法连接
Steps to Reproduce
reactflux配置
services:
reactflux:
image: electh/reactflux:latest
container_name: reactflux
restart: unless-stopped
networks:
- backend
- frontend
#ports:
# - 2000:2000
networks:
backend:
external: true
frontend:
external: true
miniflux配置
services:
miniflux:
image: ${MINIFLUX_IMAGE:-miniflux/miniflux:latest}
container_name: miniflux
restart: unless-stopped
networks:
- backend
- frontend
environment:
BASE_URL: ${BASE_URL}
DATABASE_URL: postgres://miniflux:${DB_PASSWORD}@postgres-main:5432/miniflux?sslmode=disable
RUN_MIGRATIONS: "1"
CREATE_ADMIN: "1"
networks:
backend:
external: true
frontend:
external: true
Expected Behavior
希望可以通过内网连接
Screenshots / Videos


ReactFlux Version
v2025.08.02
Miniflux Version
2.2.11
Browser
Firefox 141.0
Operating System
Windows 11 24H2
Device
Desktop
Console Errors
Additional Context
No response
###Describe the Bug
It can be used normally on the public network, but reactflux and Miniflux are added to the same Docker network, and use Docker's internal DNS resolution, and cannot connect.
Steps to Reproduce
reactflux configuration
services:
reactflux:
image: electth/reactflux:latest
container_name: reactflux
restart: unless-stopped
networks:
- backend
- frontend
#ports:
# - 2000:2000
networks:
backend:
external: true
frontend:
external: true
Miniflux configuration
services:
miniflux:
image: ${MINIFLUX_IMAGE:-miniflux/miniflux:latest}
container_name: miniflux
restart: unless-stopped
networks:
- backend
- frontend
environment:
BASE_URL: ${BASE_URL}
DATABASE_URL: postgres://miniflux:${DB_PASSWORD}@postgres-main:5432/miniflux?sslmode=disable
RUN_MIGRATIONS: "1"
CREATE_ADMIN: "1"
networks:
backend:
external: true
frontend:
external: true
Expected Behavior
Hopefully connect via the intranet
Screenshots / Videos


ReactFlux Version
v2025.08.02
Miniflux Version
2.2.11
Browser
Firefox 141.0
Operating System
Windows 11 24H2
Device
Desktop
Console Errors
Additional Context
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working