Files
Memoh/docker/docker-compose.cn.yml
T
Acbox 38afb2e1c6 refactor(docker): split browser image into per-core prebuilt variants
Replace the single browser image (which required local build) with three
prebuilt images: browser-chromium, browser-firefox, and browser (both).
Each is exposed as a separate Docker Compose profile so users can simply
`docker compose --profile browser-chromium up -d` without any local build
step, significantly reducing install time.
2026-03-29 01:46:18 +08:00

17 lines
466 B
YAML

services:
postgres:
image: memoh.cn/library/postgres:18-alpine
qdrant:
image: memoh.cn/qdrant/qdrant:latest
migrate:
image: memoh.cn/memohai/server:latest
server:
image: memoh.cn/memohai/server:latest
web:
image: memoh.cn/memohai/web:latest
browser:
image: memoh.cn/memohai/browser:latest
browser-chromium:
image: memoh.cn/memohai/browser-chromium:latest
browser-firefox:
image: memoh.cn/memohai/browser-firefox:latest