Pydio

Turn any web server into a powerful file management system and an alternative to mainstream cloud storage providers.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.7'
services:
 
  cells:
    image: pydio/cells:latest
    restart: unless-stopped
    ports: ["8080:8080"]
    volumes:
      - ./cellsdir:/var/cells
      - ./data:/var/cells/data
 
  mysql:
    image: mysql:8
    restart: unless-stopped
    environment:
      MYSQL_ROOT_PASSWORD: P@ssw0rd
      MYSQL_DATABASE: cells
      MYSQL_USER: pydio
      MYSQL_PASSWORD: P@ssw0rd
    command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
    volumes:
      - ./mysqldir:/var/lib/mysql

Resources

Website: https://pydio.com/

GitHub: https://github.com/pydio/cells

Docker Hub: https://hub.docker.com/r/pydio/cells

Configuration: https://pydio.com/en/docs/cells/v4/docker