Pydio Cells provides a secure, self-hosted alternative to SaaS content platforms, giving your enterprise complete control over its data. Designed for sensitive environments, it combines high-performance file sharing and robust collaboration tools within a single, intuitive interface. This eliminates the need for multiple disparate solutions and reduces platform creep.
Key capabilities include:
The platform also includes Cells Flows, a powerful no-code scripting engine. This allows you to automate repetitive tasks and connect with third-party platforms to build complex workflows without writing any code. By consolidating document management, large file transfers, and digital asset management into one place, Pydio simplifies IT operations and enhances end-to-end visibility.
services:
cells:
image: pydio/cells:latest
restart: unless-stopped
ports:
- "8080:8080"
environment:
- CELLS_BIND=0.0.0.0:8080
- CELLS_EXTERNAL=localhost:8080
- CELLS_NO_TLS=1
volumes:
- ./cells-data:/var/cells
depends_on:
- db
db:
image: mysql:8.0
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
volumes:
- ./mysql-data:/var/lib/mysql
command: ["mysqld", "--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci"]MYSQL_ROOT_PASSWORD=your_super_secret_root_password
MYSQL_PASSWORD=your_super_secret_database_passwordAuto-fetched about 21 hours ago
Auto-fetched about 21 hours ago