refactor(images): pull from registry instead of building; add build.sh for local dev
This commit is contained in:
parent
ff9ed447c0
commit
2d822305d1
6 changed files with 48 additions and 18 deletions
|
|
@ -3,6 +3,7 @@ services:
|
|||
# Bridges the isolated internal network to the internet.
|
||||
# Enforces an egress allowlist — see proxy/squid.conf.
|
||||
proxy:
|
||||
image: registry.zeidler.dev/docker/playground/docker-claude-proxy:${IMAGE_TAG:-latest}
|
||||
build:
|
||||
context: proxy
|
||||
dockerfile: Dockerfile
|
||||
|
|
@ -24,6 +25,7 @@ services:
|
|||
# No direct internet access. All egress routes through the proxy sidecar.
|
||||
# Run via "docker compose run --rm --service-ports claude" (managed by claude.sh).
|
||||
claude:
|
||||
image: registry.zeidler.dev/docker/playground/docker-claude-claude:${IMAGE_TAG:-latest}
|
||||
build:
|
||||
context: claude/
|
||||
dockerfile: Dockerfile
|
||||
|
|
@ -64,6 +66,7 @@ services:
|
|||
# Protected by HTTP basic auth — set WEBUI_USER / WEBUI_PASSWORD in .env.
|
||||
# Network isolation is identical to the CLI container.
|
||||
webui:
|
||||
image: registry.zeidler.dev/docker/playground/docker-claude-claude:${IMAGE_TAG:-latest}
|
||||
build:
|
||||
context: claude/
|
||||
dockerfile: Dockerfile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue