Skip to content

container: shadowbroker #86

@unic78

Description

@unic78

Prerequisites

  • I have searched the issues and confirmed this container has not been suggested before
  • I have verified the container image is actively maintained
  • I have tested this container configuration

Container ID

shadowbroker

Display Name

shadowbroker

Description

OSINT

Category

Media

Tags

AI

GitHub URL

https://github.com/BigBodyCobain/Shadowbroker.git

Icon URL

No response

Docker Compose Service Definition

services:
  backend:
    image: ghcr.io/bigbodycobain/shadowbroker-backend:latest
    container_name: shadowbroker-backend
    ports:
      - "8000:8000"
    environment:
      - AIS_API_KEY=your_aisstream_key          # Required — get one free at aisstream.io
      - OPENSKY_CLIENT_ID=                       # Optional — higher flight data rate limits
      - OPENSKY_CLIENT_SECRET=                   # Optional — paired with Client ID above
      - LTA_ACCOUNT_KEY=                         # Optional — Singapore CCTV cameras
      - CORS_ORIGINS=                            # Optional — comma-separated allowed origins
    volumes:
      - backend_data:/app/data
    restart: unless-stopped

  frontend:
    image: ghcr.io/bigbodycobain/shadowbroker-frontend:latest
    container_name: shadowbroker-frontend
    ports:
      - "3000:3000"
    environment:
      - BACKEND_URL=http://backend:8000   # Docker internal networking — no rebuild needed
    depends_on:
      - backend
    restart: unless-stopped

volumes:
  backend_data:

Additional Information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    containernew container suggestion

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions