Bring all your digital assets into a single, secure, and private environment. This open-source collaborative platform is designed for modern teams and individuals who value data privacy and control. All your data is hosted in France under GDPR compliance, or you can choose to install it on your own servers for ultimate sovereignty.
This all-in-one workspace helps you organize your digital life with powerful, integrated tools:
services:
couchdb:
image: couchdb:3
restart: unless-stopped
environment:
- COUCHDB_USER=${COUCHDB_USER}
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
volumes:
- ./couchdb-data:/opt/couchdb/data
cozy:
image: cozy/cozy-stack:latest
restart: unless-stopped
depends_on:
- couchdb
ports:
- 8080:8080
environment:
- COUCHDB_URL=http://${COUCHDB_USER}:${COUCHDB_PASSWORD}@couchdb:5984/
volumes:
- ./cozy-config:/etc/cozy
- ./cozy-data:/usr/local/cozy-stack
command: serve --host 0.0.0.0COUCHDB_USER=admin
COUCHDB_PASSWORD=your_super_secret_couchdb_passwordAuto-fetched 42 minutes ago
Auto-fetched 42 minutes ago