AppsBackupGitsave

GitSave

GitSave is a self-hosted and open-source application that backs up your Git repositories.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  gitsave:
    image: timwitzdam/gitsave:latest
    container_name: GitSave
    restart: always
    ports:
      - "3000:3000"
    volumes:
      - ./gitsave:/app/data
      - ./backups:/app/backups
    environment:
      - JWT_SECRET=${JWT_SECRET:?error}

Resources

GitHub: https://github.com/TimWitzdam/GitSave

Docker Hub: https://hub.docker.com/r/timwitzdam/gitsave

Configuration: https://github.com/TimWitzdam/GitSave#docker-compose