6951b8049f
Per 1Panel App Store architecture, bridge apps must use Docker DNS on 1panel-network instead of host.docker.internal. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
457 B
YAML
16 lines
457 B
YAML
# 1Panel overlay — join Nexus to 1panel-network (App Store MySQL/Redis use this network).
|
|
# Applied automatically when `docker network inspect 1panel-network` succeeds (deploy/nexus-1panel.sh).
|
|
|
|
services:
|
|
nexus:
|
|
networks:
|
|
- 1panel-network
|
|
environment:
|
|
NEXUS_1PANEL_DB_HOST: ${NEXUS_1PANEL_DB_HOST:-}
|
|
NEXUS_1PANEL_REDIS_HOST: ${NEXUS_1PANEL_REDIS_HOST:-}
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|
|
name: 1panel-network
|