Files
Wrangler-API/compose.yml
AdingApkgg f6367f8304 251221
2025-12-21 00:38:10 +08:00

20 lines
606 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
workers:
image: cf-workers-dev:latest
build:
context: .
dockerfile: Dockerfile
container_name: cf-workers-dev
ports:
- "8787:8787" # 本地访问 Workers 预览
- "8976:8976" # 可选Wrangler 的 dashboard如果用了 --inspect
volumes:
- .:/app # 代码实时挂载,改动无需重启
- podman-node-modules:/app/node_modules # 持久化 node_modules避免重复安装
command:
["npx", "wrangler", "dev", "--local", "--ip", "0.0.0.0", "--port", "8787"]
restart: unless-stopped
volumes:
podman-node-modules: