2025-10-25 02:59:06 -07:00
2024-09-02 16:54:10 +00:00
2024-03-03 19:16:46 +08:00
2025-10-25 02:47:43 -07:00
2025-10-20 19:51:41 -07:00
2024-03-03 19:16:46 +08:00
2024-03-03 19:16:46 +08:00
2024-03-03 19:16:46 +08:00
2024-09-02 16:54:10 +00:00
2024-03-03 19:16:46 +08:00
2025-10-25 02:59:06 -07:00
2024-03-03 19:16:46 +08:00
2025-10-21 06:56:06 -07:00
2024-03-03 19:16:46 +08:00
2024-03-03 19:16:46 +08:00

Selflare

Compile Cloudflare Workers to Cap'n Proto and deliver them as minimalist Docker images.

Features

  • Cloudflare Worker
  • Cloudflare KV
  • Cloudflare D1
  • Cloudflare R2
  • Cloudflare DO
  • Cache API
  • Cloudflare Vectorize
  • Environment Variables

Usage

Install with npm i @sugoidogo/selflare --save-dev and run the following commands in the directory of your worker:

npx selflare compile   # Compile the worker to Cap'n Proto
npx selflare docker    # Generate Dockerfile and docker-compose.yml
docker compose up      # Run the worker

Environment Variables

All the environment variables defined in [vars] section of the wrangler.toml file will be replaced by the corresponding environment variables in the Docker container.

You can simply set the environment variables in the docker-compose.yml file like this:

version: "3.8"

services:
    worker:
        build: .
        image: worker
        volumes:
            - ./.storage/cache:/worker/cache
            - ./.storage/kv:/worker/kv
            - ./.storage/d1:/worker/d1
            - ./.storage/r2:/worker/r2
        ports:
            - "8080:8080"
        environment:
            - SOME_TOKEN=I_AM_A_TOKEN

The image is based on jacoblincool/workerd which has a size of 35MB (compressed) and supports both amd64 and arm64 architectures.

S
Description
Compile Cloudflare Workers to Cap'n Proto and deliver them as minimalist Docker images.
Readme MIT 253 KiB
Latest
2025-10-25 09:59:06 +00:00
Languages
TypeScript 84.6%
JavaScript 8.9%
HTML 5.7%
Dockerfile 0.8%