mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
38afb2e1c6
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.
17 lines
466 B
YAML
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 |