Version Updates
Use different update methods depending on your deployment method.
Cloudflare Pages Deployment
Automatic Updates
Enable GitHub Actions automatic sync:
- Go to the
Actionspage in your forked repository - Enable Actions
Manual Updates
- Go to your forked repository
- Click "Sync fork"
- Select "Update branch"
- Cloudflare Pages will automatically redeploy

Cloudflare Workers Deployment
Automatic Updates
After enabling the Upstream Sync Action, updates from the upstream repository will be automatically synced to the main branch and trigger deployment without manual intervention.
Manual Updates
- Go to your forked repository
- Click "Sync fork" to sync upstream updates
- This will automatically trigger deployment; you can also manually run Deploy to Cloudflare Workers from the Actions page
Docker Deployment
Docker Compose Update
bash
# Pull latest image
docker compose pull
# Restart service
docker compose up -dDocker Command Update
bash
# Pull latest image
docker pull marseventh/cloudflare-imgbed:latest
# Run container
docker run -d \\
--name cloudflare-imgbed \\
-p 7658:8080 \\
-v $(pwd)/data:/app/data \\
-v $(pwd)/wrangler.toml:/app/wrangler.toml \\
marseventh/cloudflare-imgbed:latestManual Deployment
Pull latest code, rebuild and deploy:
bash
git pull
npm install
npm run start