fbi-proxy 1.9.1

A fast and flexible proxy server for intercepting and modifying HTTP/HTTPS requests
services:
  fbi-proxy:
    build: .
    image: snomiao/fbi-proxy
    network_mode: host
    environment:
      - RUST_LOG=info
    env_file:
      - .env
    develop:
      watch:
        - action: sync+restart
          path: ./ts
          target: /app/ts
          ignore:
            - "*.log"
            - "*.tmp"
        - action: sync+restart
          path: ./package.json
          target: /app/package.json
        - action: rebuild
          path: ./rs
          ignore:
            - "target/"
        - action: rebuild
          path: ./Cargo.toml
        # Removed Cargo.lock from watch to prevent loops
        # - action: rebuild
        #   path: ./Cargo.lock
        - action: rebuild
          path: ./Dockerfile