github tiagozip/cap standalone@3.0.0-beta

pre-release10 hours ago
image

Cap Standalone v3 is now in beta!

The dashboard features a completely new UI, more analytics, Valkey-based storage, and more. It has been released as tiago2/cap:3.0.0-beta for testing before it's released as the latest version. If you'd like to try it, use this docker compose:

services:
  cap:
    image: tiago2/cap:3.0.0-beta
    container_name: cap
    ports:
      - "3000:3000"
    environment:
      ADMIN_KEY: your_secret_password
      REDIS_URL: redis://valkey:6379
    depends_on:
      valkey:
        condition: service_healthy
    restart: unless-stopped

  valkey:
    image: valkey/valkey:8-alpine
    container_name: cap-valkey
    volumes:
      - valkey-data:/data
    command: valkey-server --save 60 1 --loglevel warning --maxmemory-policy noeviction
    healthcheck:
      test: ["CMD", "valkey-cli", "ping"]
      interval: 5s
      timeout: 3s
      retries: 5
    restart: unless-stopped

volumes:
  valkey-data:

Don't miss a new cap release

NewReleases is sending notifications on new releases.