File size: 742 Bytes
6425ec7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '3.8'

services:
  ops-dashboard:
    image: ops-dashboard:latest
    container_name: ops-dashboard
    restart: unless-stopped
    working_dir: /app
    command: [ "streamlit", "run", "app.py" ]
    volumes:
      - ./app.py:/app/app.py
      - ${OPENCLAW_HOME:-~/.openclaw}:/openclaw:ro
    environment:
      OPENCLAW_AGENTS_ROOT: /openclaw/agents
    networks:
      - librechat_default

  ops-dashboard-react:
    build:
      context: ./react-dashboard
      args:
        VITE_BASE_PATH: /react/
    image: ops-dashboard-react:latest
    container_name: ops-dashboard-react
    restart: unless-stopped
    networks:
      - librechat_default

networks:
  librechat_default:
    external: true
    name: librechat_default