HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/owl/.container/docker-compose.yml
services:
  owl:
    # Option 1: Use pre-built image from Docker Hub
    image: mugglejinx/owl:latest
    
    # Option 2: Build image locally
    # Uncomment the following lines and comment out the 'image' line above to build locally
    # build:
    #   context: ..
    #   dockerfile: .container/Dockerfile
    
    volumes:
      # Mount .env file for easy API key configuration
      - ../owl/.env:/app/owl/.env
      # Mount examples folder to support running code examples inside the Docker container
      - ../examples:/app/examples
      # Mount data directory
      - ./data:/app/owl/data
      # Mount cache directories to avoid repeated downloads
      - ~/.cache/pip:/root/.pip/cache
      - ~/.cache/playwright:/root/.cache/ms-playwright
    environment:
      - OPENAI_API_KEY=${OPENAI_API_KEY}
      - DISPLAY=:99
      - PYTHONDONTWRITEBYTECODE=1
      - PYTHONUNBUFFERED=1
      - TERM=xterm-256color
      - GRADIO_SERVER_NAME=0.0.0.0
      - GRADIO_SERVER_PORT=7860
      - PYTHONPATH=.
    ports:
      - "7860:7860"
    stdin_open: true
    tty: true
    shm_size: 2gb
    # Simplify resource limits
    deploy:
      resources:
        limits:
          memory: 4G

# Define persistent volumes for caching
volumes:
  playwright-cache:
  pip-cache: