A free, self-hosted task manager. Simple, fast, and works on any device.
More screenshots available on the website.
Conao is distributed as a Docker image.
compose.yamlservices:
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/sqlite
Set APP_URL to the URL where you will access Conao.
docker compose up -d
docker exec -it conao php artisan key:generate --show
Copy the generated key and set it as the APP_KEY environment variable in your compose.yaml.
docker compose up -d --force-recreate