Sign inSign up

psadurski/matrix

By psadurski

•Updated 3 months ago

Matrix App - lightweight task and workflow manager. Multi-arch Docker image for x86-64 and ARM64.

Image
0

1.4K

psadurski/matrix repository overview

⁠Matrix

Matrix is a lightweight task and workflow manager.

⁠Features

  • Eisenhower matrix
  • Task prioritization
  • Tags
  • Attachments
  • SQLite storage
  • Multi-architecture Docker image

⁠Supported platforms

  • linux/amd64
  • linux/arm64

⁠Pull image

docker pull psadurski/matrix:latest

⁠Quick start

This is the simplest setup:

docker run -d \
  --name matrix \
  -p 3000:3000 \
  -v matrix-data:/app/starter/data \
  --restart unless-stopped \
  psadurski/matrix:latest

Example compose.yaml:

services:
  matrix:
    image: psadurski/matrix:latest
    container_name: matrix
    ports:
      - "3000:3000"
    volumes:
      - matrix-data:/app/starter/data
    restart: unless-stopped

volumes:
  matrix-data:

Then open:

http://localhost:3000

⁠Language

Current user interface language:

šŸ‡µšŸ‡± Polish

English localization may be added in future releases.

⁠Project status

The project is under active development.

⁠Live Demo

https://matrix-demo.sadurski-it.pl⁠

A public demonstration environment is available for evaluation and testing.

Note

The demo environment is automatically restored once per day to maintain a consistent dataset and ensure a predictable experience for all visitors.

Tag summary

Content type

Image

Digest

sha256:84a46989b…

Size

47.7 MB

Last updated

3 months ago

docker pull psadurski/matrix