Feature or enhancement request details
Please add first-class container-to-container DNS discovery for containers attached to the same container network, including bare container names and network aliases.
This came up while testing Compose-compatible workflows with container-compose. Compose users expect service names such as web, db, and network aliases to resolve from peer containers on the same network without a global host DNS setup step.
Related tracking:
Current behavior on container 1.0.0:
container system start
container network create appnet
container run -d --name network-web --network appnet nginx:alpine
container run --rm --network appnet busybox:latest nslookup network-web
The peer container receives the network gateway as its resolver:
container exec network-web cat /etc/resolv.conf
# nameserver 192.168.65.1
The container is reachable by IP from the same network, but name lookup returns NXDOMAIN:
Server: 192.168.65.1
Address: 192.168.65.1:53
** server can't find network-web: NXDOMAIN
The currently documented workaround appears to be configuring a DNS domain with container system dns create <domain> plus setting dns.domain. That can make FQDN/search-domain flows work, but it is not the same as network-scoped, Compose-style service discovery. It also requires global host DNS configuration for what is usually expected to be a per-network container runtime feature.
A useful end state would be one of these:
- Containers on the same network can resolve each other by container name, for example
web -> that container's network IP.
- The network layer supports additional network-scoped aliases so higher-level tools can map Compose service names and aliases onto Apple Container networks.
- If bare names are intentionally out of scope, expose a supported CLI/API path that tools can use to create network-scoped DNS domains/aliases without requiring users to manually toggle global DNS settings.
Environment used for the repro:
- OS: macOS 26.5.1 (25F80)
- Xcode: 26.5 (17F42)
- Container: container CLI version 1.0.0 (build: release, commit: ee848e3)
- Architecture: arm64
I agree to follow this project's Code of Conduct.
Feature or enhancement request details
Please add first-class container-to-container DNS discovery for containers attached to the same
containernetwork, including bare container names and network aliases.This came up while testing Compose-compatible workflows with
container-compose. Compose users expect service names such asweb,db, and network aliases to resolve from peer containers on the same network without a global host DNS setup step.Related tracking:
Current behavior on
container1.0.0:The peer container receives the network gateway as its resolver:
The container is reachable by IP from the same network, but name lookup returns NXDOMAIN:
The currently documented workaround appears to be configuring a DNS domain with
container system dns create <domain>plus settingdns.domain. That can make FQDN/search-domain flows work, but it is not the same as network-scoped, Compose-style service discovery. It also requires global host DNS configuration for what is usually expected to be a per-network container runtime feature.A useful end state would be one of these:
web-> that container's network IP.Environment used for the repro:
I agree to follow this project's Code of Conduct.