fix(dev-sso): mark the per-developer private network external #19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/dev-sso-private-network-external"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The dunite rewrite dropped
external: truefrom theprivatenetwork but thejust dev*recipes still pre-create it withdocker network create. Compose then expected to own the network and aborted on the pre-created one: "network dev-bunyip-private-${USER} was found but has incorrect label com.docker.compose.network set to '' (expected: private)". Restoreexternal: trueso compose attaches to the recipe-created network instead of trying to manage it, matching the recipe's comment and the pre-rewrite behaviour.Co-Authored-By: Claude Opus 4.8 (1M context) noreply@anthropic.com
The dunite rewrite dropped `external: true` from the `private` network but the `just dev*` recipes still pre-create it with `docker network create`. Compose then expected to own the network and aborted on the pre-created one: "network dev-bunyip-private-${USER} was found but has incorrect label com.docker.compose.network set to '' (expected: private)". Restore `external: true` so compose attaches to the recipe-created network instead of trying to manage it, matching the recipe's comment and the pre-rewrite behaviour. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>