Protect your data with this fast and secure open-source backup tool. It allows you to create encrypted, compressed, and deduplicated backups using the cloud storage provider you already use and trust. This approach gives you full control over where your data is stored.
It is a versatile solution that works across Windows, macOS, and Linux. Whether you prefer a visual interface or the command line, this tool has you covered. It offers a user-friendly desktop app for managing snapshots and policies, as well as a powerful Command-Line Interface (CLI) for scripting and automation. Its scalable architecture is designed to handle everything from small personal files to large server backups efficiently.
As an open-source project, it benefits from community contributions and transparency, ensuring the software remains secure and up-to-date.
services:
kopia:
image: kopia/kopia:latest
container_name: kopia
ports:
- "51515:51515"
environment:
- TZ=UTC
volumes:
- ./config:/app/config
- ./cache:/app/cache
- ./logs:/app/logs
- ./source:/source:ro
command:
- server
- start
- --insecure
- --address=0.0.0.0:51515
- --server-username=${KOPIA_USERNAME}
- --server-password=${KOPIA_PASSWORD}
restart: unless-stoppedKOPIA_USERNAME=admin
KOPIA_PASSWORD=your_super_secret_passwordAuto-fetched 37 minutes ago
Auto-fetched 37 minutes ago