Version Updates
Use different update methods depending on your deployment method.
Cloudflare Deployment
Automatic Updates
Enable GitHub Actions automatic sync:
- Go to your forked repository
- Enable Actions
Manual Updates
- Go to your forked repository
- Click "Sync fork"
- Select "Update branch"
- Cloudflare Pages will automatically redeploy
Docker Deployment
Docker Compose Update
bash
# Pull latest image
docker-compose pull
# Restart service
docker-compose up -d
# Clean old images
docker image prune
Docker 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:latest
Manual Deployment
Pull latest code, rebuild and deploy:
bash
git pull
npm install
npm run start