Online kanban tool Restyaboard

insert image description here

The software in this article is recommended by netizens yf33;

What Restyaboard?

RestyaboardIt is a class Trelloapp that supports kanban, tasks, to-do list, chat, etc. RestyaboardThe Dashboard gives you a visual overview of the current status of your projects and increases your productivity by allowing you to focus on the few most important projects. Whether you're creating a personal to-do list, planning a vacation with friends, or working on the next revolutionary concept with your team, there's a Restyaboardsimple, effective tool to keep your tasks organized.

Note : the code is a bit old and 1has not been updated for years;

command line installation

Install it in Docker mode on Synology.

If you are familiar with the command line, this multi-container project can be docker-composeinstalled with, save the following as docker-compose.ymla file

version: "2"

services:
  restyaboard:
    image: restyaplatform/restyaboard:dev
    container_name: ra-web
    ports:
      - 1236:80
    volumes:
      - ./media:/var/lib/nginx/html/media
    environment:
      - POSTGRES_HOST=postgres
      - POSTGRES_PORT=5432
      - POSTGRES_ADMIN_USER=postgres
      - POSTGRES_ADMIN_PASS=admin
      - RESTYA_DB_USERNAME=restya
      - RESTYA_DB_USERPASS=restya
      - RESTYA_DB=restyaboard
      #- SMTP_SERVER=smtp_relay
      #- SMTP_PORT=587
      #- TZ=Etc/UTC
    depends_on:
      - postgres
    restart: always

  # See https://hub.docker.com/r/boky/postfix for documentation
  # or try https://github.com/WeAreGenki/docker-smtp
  smtp_relay:
    image: boky/postfix
    container_name: ra-rsmtp
    environment:
      - RELAYHOST=fakesmtp2:25
      - ALLOW_EMPTY_SENDER_DOMAINS=true

  # Check messages at localhost:1080
  fakesmtp2:
    image: tophfr/mailcatcher
    container_name: ra-fsmtp
    ports:
      #- "1025:25"
      - "1235:80"

  postgres:
    image: postgres:14
    container_name: ra-db
    volumes:
      - ./data:/var/lib/postgresql/data
    environment:
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=admin
    restart: always

Then execute the following command

# 新建文件夹 restyaboard 和 子目录
mkdir -p /volume2/docker/restyaboard/{
    
    data,media}

# 进入 restyaboard 目录
cd /volume2/docker/restyaboard

# 将 docker-compose.yml 放入当前目录

# 一键启动
docker-compose up -d

insert image description here

If nothing else, there should be 4a container successfully started

run

Enter in the browser http://群晖IP:1236to see the login interface

registered user

First need to register user

insert image description here

Please fill in as required

There will be a prompt in the upper right corner

Enter in the browser http://群晖IP:1235to see the mail interface

Copy the address in the red box, open it in the browser, and an activation prompt will be displayed in the upper right corner

insert image description here

Back to the mail interface, there will be new mail

After logging in for the first time, you will see demo videos, etc.

insert image description here

New Kanban

There are many types of templates supported by Kanban, chooseKanban

Create a few cards casually, support drag and drop operation

I feel that Todothe type is more suitable for Lao Su, using three states, Todo, Doing, Doneto mark the writing state

reference documents

RestyaPlatform/board: Trello like kanban board. Based on Restya platform.
地址:https://github.com/RestyaPlatform/board

Guess you like

Origin blog.csdn.net/wbsu2004/article/details/131800415