====== ExcaliDraw 繪製草圖工具(Docker) ======
* 安裝環境 :
* VM : 4 vCores / 8G RAM / 16G(SSD)
* OS : [[tech/alpine_docker|Alpine3 + Docker Compose]]
===== 安裝方式 =====
* 編輯 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**
===== 參考網址 =====
* https://github.com/excalidraw/excalidraw
* https://github.com/flywindy/excalidraw-docker/blob/master/docker-compose.yml
{{tag>draw 草圖 協作 docker}}