adding mcp

This commit is contained in:
2026-05-29 23:53:45 +00:00
Unverified
parent 06cf95d4e1
commit 1471e43229
2 changed files with 129 additions and 0 deletions

View File

@@ -5,6 +5,8 @@
image: ghcr.io/pouzor/homelable-backend:latest
container_name: homelable-backend
restart: unless-stopped
env_file:
- .env
environment:
- AUTH_USERNAME=${AUTH_USERNAME}
- AUTH_PASSWORD_HASH=${AUTH_PASSWORD_HASH} # Use a bcrypt hash for security
@@ -15,6 +17,19 @@
ports:
- "${HOMELABEL_BACK_PORT}:8000"
mcp:
image: ghcr.io/pouzor/homelable-mcp:latest
container_name: homelable-mcp
restart: unless-stopped
env_file:
- .env
ports:
- "8001:8001"
environment:
BACKEND_URL: "http://backend:8000"
depends_on:
- backend
frontend:
#image: ghcr.io/pouzor/homelable-frontend-standalone:latest # standalone version
image: ghcr.io/pouzor/homelable-frontend:latest