feat: add the hive mind

This commit is contained in:
2026-01-06 01:07:28 +00:00
parent ed7b96a024
commit f64c449460

20
misc/docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
hypermind:
image: ghcr.io/lklynet/hypermind:latest
container_name: hypermind
network_mode: host
restart: unless-stopped
environment:
- PORT=3000
labels:
- "traefik.enable=true"
- "traefik.http.routers.hypermind.rule=Host(`hypermind.${DOMAIN}`)"
- "traefik.http.routers.hypermind.entrypoints=https"
- "traefik.http.routers.hypermind.service=hypermind"
- "traefik.http.routers.hypermind.tls.certresolver=cloudflare"
networks:
- traefik_public
networks:
traefik_public:
external: true