Keep sensitive information out of email and chat logs by generating secure, one-time use links. This ensures confidential data like API tokens and passwords remains private. Once viewed, the secret is permanently deleted from the servers, leaving no trace.
Key features include:
Perfect for IT professionals, this tool prevents credential leaks and enforces strict security protocols for handling sensitive data.
services:
redis:
image: redis:alpine
restart: always
volumes:
- ./redis-data:/data
onetimesecret:
image: onetimesecret/onetimesecret:latest
restart: always
ports:
- "7143:7143"
environment:
- REDIS_URL=redis://redis:6379/0
- ONETIME_HOST=${ONETIME_HOST}
- ONETIME_SECRET=${ONETIME_SECRET}
- SSL=${SSL}
depends_on:
- redis
volumes:
- ./data:/var/lib/onetimeONETIME_HOST=localhost:7143
ONETIME_SECRET=your_super_secure_random_secret_key
SSL=falseAuto-fetched about 16 hours ago
Auto-fetched about 16 hours ago