ExcaliDraw 繪製草圖工具(Docker)

  • 編輯 docker-compose.yml

    vi docker-compose.yml

    version: "3.8"
    
    services:
      excalidraw:
        image: excalidraw/excalidraw:latest
        container_name: excalidraw
        ports:
          - "3000:80"
        restart: on-failure
        stdin_open: true
        healthcheck:
          disable: true
        volumes:
          - ./:/opt/node_app/app:delegated
          - ./package.json:/opt/node_app/package.json
          - ./yarn.lock:/opt/node_app/yarn.lock
          - notused:/opt/node_app/app/node_modules
    
    volumes:
      notused:
  • 啟動服務

    docker compose up -d

  • 進入 Web 畫面 - http://Server-IP:3000
如果要自建協作服務, 需要參考以下的專案
https://github.com/flywindy/excalidraw-docker
  • tech/excalidraw.txt
  • 上一次變更: 2024/02/16 12:12
  • jonathan