clipcascade
Clipboard sync across multiple devices 📋
100K+
ClipCascade is an open-source, lightweight utility that automatically syncs your clipboard across multiple devices—no key press required. It ensures seamless clipboard sharing between devices, prioritizing privacy with end-to-end encryption. Whether you're moving between workstations or simply want the convenience of a unified clipboard, ClipCascade has you covered.
You can host ClipCascade on your server using Docker with either docker-compose or a simple docker run command.
docker-compose.yml file with the following content:# 🔑 Default admin credentials:
# Username: admin
# Password: admin123
# ⚠️ IMPORTANT: Ensure that the default admin credentials are changed immediately after the first login.
services:
clipcascade:
image: sathvikrao/clipcascade:latest
ports:
- "8080:8080"
restart: always
volumes:
- ./cc_users:/database # Persistent storage for user data
environment:
- CC_MAX_MESSAGE_SIZE_IN_MiB=1 # Maximum message size in MiB (ignored if P2P mode is enabled)
- CC_P2P_ENABLED=false # Enables or disables peer-to-peer(P2P) mode
# - CC_ALLOWED_ORIGINS=https://clipcascade.example.com # Defines allowed CORS origins for security
# - CC_SIGNUP_ENABLED=false # Enables or disables user self-registration
docker-compose up -d
http://localhost:8080. Upon first login, update the default credentials (admin / admin123) for security.docker run -d \
--name clipcascade \
-p 8080:8080 \
-e CC_MAX_MESSAGE_SIZE_IN_MiB=1 \
-v ./cc_users:/database \
sathvikrao/clipcascade
http://localhost:8080. Upon first login, update the default credentials (admin / admin123) for security.Content type
Image
Digest
sha256:0f7aadec0…
Size
161 MB
Last updated
12 months ago
docker pull sathvikrao/clipcascade