Skip to content

[Bug]: LAN IP Incorrect for external network #86

@psfshr

Description

@psfshr

Version

2026.04.08

Unraid Version

7.2.4

Bug Description

Have a stack configured to use macvlan via the built in bridge br0.
Configuration works correctly, and on the Docker tab the "default" Docker Containers view shows the correct LAN IP, but the Compose view shows the main Unraid IP instead.

Image Image

Expected Behavior

Would expect to see the compose section show the br0 LAN IP.

Steps to Reproduce

As per bug description section.

Relevant Logs

Compose

networks:
  soundserver_frontend:
    name: br0
    external: true
    ipam:
      config:
        - subnet: 192.168.2.0/24
          gateway: 192.168.2.1
  soundserver_backend:
    name: soundserver_backend

services:
  icecast:
    image: moul/icecast
    container_name: soundserver_icecast
    restart: always
    ports:
      - "8000:8000"
    environment:
      ICECAST_SOURCE_PASSWORD: <burp>
      ICECAST_ADMIN_PASSWORD: <burp>
      ICECAST_RELAY_PASSWORD: <burp>
      ICECAST_PASSWORD: <burp>
    networks:
      soundserver_frontend:
        ipv4_address: 192.168.2.22
      soundserver_backend:

  liquidsoap:
    image: savonet/liquidsoap:v2.4.0
    container_name: soundserver_liquidsoap
    restart: always
    volumes:
      - /mnt/user/appdata/soundserver_liquidsoap/audio:/audio
      - /mnt/user/appdata/soundserver_liquidsoap/liquidsoap.liq:/liquidsoap.liq
    command: ["liquidsoap", "/liquidsoap.liq"]
    depends_on:
      - icecast
    networks:
      soundserver_backend:

Additional Context

No response

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions