RustMock 0.3.3

Lightning-fast, lightweight API mock server with OpenAPI support and beautiful React dashboard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  rustmock:
    build:
      context: .
    ports:
      - "8090:8090"
    #volumes:
    # Uncomment to mount an OpenAPI spec file (endpoints will be auto-imported on startup)
    # - ./openapi.json:/app/openapi.json
    environment:
      # Uncomment to enable auto-import of OpenAPI spec file on startup
      # - OPENAPI_FILE=/app/openapi.json
      # Default host and port settings
      - HOST=0.0.0.0
      - PORT=8090
    restart: unless-stopped