Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 884 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 884 Bytes

🚀 GitHub Actions Cache Server

This is a drop-in replacement for the official GitHub hosted cache server. It is compatible with the official actions/cache action, so there is no need to change your workflow files and it even works with packages that internally use actions/cache.

Features

  • 🔥 Compatible with official actions/cache action
  • 📦 Supports multiple storage solutions and is easily extendable.
  • 🔒 Secure and self-hosted, giving you full control over your cache data.
  • 😎 Easy setup
version: '3.9'

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

volumes:
  cache-data:

Documentation

👉 https://gha-cache-server.falcondev.io/getting-started 👈