Skip to content

SpecDock v0.1.2

Choose a tag to compare

@dev-ik dev-ik released this 17 Jun 20:24
· 15 commits to main since this release

First successful Docker image release for SpecDock.

Docker

Pull the published image:

docker pull docker.io/d8vik/specdock:v0.1.2

Run with Docker Compose:

services:
  specdock:
    image: docker.io/d8vik/specdock:v0.1.2
    ports:
      - "127.0.0.1:3000:3000"
    environment:
      PUBLIC_DEMO: "true"
      PROXY_ENABLED: "false"

Included

  • OpenAPI 3.0/3.1 import from file, URL, or raw text
  • Endpoint explorer with search and operation details
  • Request builder with path, query, header, and JSON body support
  • Direct browser request mode for public/demo deployments
  • Response viewer and request history metadata
  • TypeScript SDK generation
  • ZIP export for generated files
  • Docker deployment support

Fixed

  • Fixed Docker workspace dependency handling during image build.
  • Ensured Vite React plugin dependencies are available in the Docker builder stage.

Security Notes

Public deployments should keep backend proxy mode disabled:

PUBLIC_DEMO=true
PROXY_ENABLED=false

Proxy mode is intended only for trusted self-hosted deployments with an explicit allowed-host list.