Self-Hosted Cache Server for GitHub Actions

Easily deploy your own GitHub actions cache without needing to change any workflow files!

docker-compose.yml
version: '3.9'

services:
  cache-server:
    image: ghcr.io/falcondev-oss/github-actions-cache-server:latest
    ports:
      - '3000:3000'
    environment:
      API_BASE_URL: http://localhost:3000
    volumes:
      - cache-data:/app/.data

volumes:
  cache-data:

Storage Drivers

Support for multiple storage drivers like S3, file system, and more.

No Workflow Changes

No need to change any workflow files, just deploy and start using.

Self-Hosted

Host your own cache server to keep your data private and increase caching speed.

Copyright © 2024