Tududi logo

Tududi

Task management tool

Alternative to: todoist, ticktick, microsoft_todo


This app allows users to manage their tasks, projects, areas, notes, and tags in an organized way

Tududi Docker Compose example

Self-host Tududi on your own server, homelab, or VPS starting from this Docker Compose example. It runs Tududi in Docker containers using the official chrisvel/tududi:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  tududi:
    image: chrisvel/tududi:latest
    environment:
      TUDUDI_USER_EMAIL: "changeme"
      TUDUDI_USER_PASSWORD: "changeme"
      TUDUDI_SESSION_SECRET: "b7377fe37a34036048fb4e9a1951c308cfece48d6365fdf12de5"
      TUDUDI_ALLOWED_ORIGINS: "*"
    volumes:
      - db:/app/backend/db
      - uploads:/app/backend/uploads
    restart: unless-stopped

volumes:
  db:
  uploads:

Values set to changeme are required — replace them with your own values before starting Tududi.

Prefer a managed setup? WinterFlow installs, configures, and updates Tududi for you using this same Docker Compose configuration.