A free, self-hosted task manager. Simple, fast, and works on any device.
More screenshots available on the website.
- Inbox — Quickly capture tasks and sort them later
- Upcoming View — See what's coming up across all your lists
- Task Lists & Groups — Organize tasks into lists and group them however you like
- Archive — Done tasks stay out of sight but never lost
- Deadlines & Planned Dates — Set due dates and plan when to work on tasks
- Notes — Add details and context to any task
- Dark & Light Theme — Choose the look that suits you
Conao is distributed as a Docker image.
services:
conao:
image: beromir/conao:latest
container_name: conao
restart: unless-stopped
ports:
- '8093:80'
environment:
- APP_URL=http://conao.localhost
- APP_KEY="GENERATED_KEY"
volumes:
- ./sqlite:/app/database/sqliteSet APP_URL to the URL where you will access Conao.
docker compose up -ddocker exec -it conao php artisan key:generate --showCopy the generated key and set it as the APP_KEY environment variable in your compose.yaml.
docker compose up -d --force-recreate