
Deploy Pydio Cells on Your Own Server
Privacy-conscious file sharing platform that connects all your teams in one place.
Want to deploy Pydio Cells on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.
What is Pydio Cells?
!!! IMPORTANT !!!: After deployment is done follow these steps otherwise your Pydio won't work! 1. Go to your Senate pydio settings page and enable HTTPS 2. Enable "Force HTTPS by redirecting all HTTP traffic to HTTPS" 3. Enable Websocket Support.
Self-Host Pydio Cells
Follow these steps to deploy on your own server.
Install Docker
Skip this step if Docker is already installed on your server.
curl -fsSL https://get.docker.com | sh
Configure
Customize the settings below. Defaults work for most cases.
General
Deploy
Copy the configuration and run it on your server.
services:
pydio:
image: pydio/cells:2.2.8
environment:
CELLS_BIND: :8811
CELLS_EXTERNAL: https://pydio.your-domain.com
CELLS_LOG_LEVEL: production
CELLS_NO_TLS: "1"
volumes:
- pydio-data:/var/cells/data
- pydio-cellsdir:/var/cells
pydio-mariadb:
image: mariadb:10.6.1
environment:
MYSQL_DATABASE: ${mariadb}-db
MYSQL_PASSWORD: ${mariadb}-pass
MYSQL_RANDOM_ROOT_PASSWORD: "1"
MYSQL_USER: ${mariadb}-user
volumes:
- pydio-mariadb-data:/var/lib/mysql
volumes:
pydio-data: {}
pydio-cellsdir: {}
pydio-mariadb-data: {}
Then run:
docker compose up -d
Access
Once started, access your app at http://localhost:8811
Why Self-Host Pydio Cells?
Full Data Ownership
Your data stays on your servers. No third-party access.
No Monthly Fees
Pay only for your server. No per-seat or usage charges.
Complete Control
Customize, backup, and scale on your own terms.
Privacy & Compliance
Meet GDPR, HIPAA, or internal security requirements.
Technical Details
Docker Image
pydio/cells:${pydio_version}Want to go faster?
Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.
Install on any Linux server:
sh -c "$(curl -sSL https://get.senate.sh)"