Add excalidraw

This commit is contained in:
whitney 2025-10-13 13:27:06 -07:00
parent ab4cfe249b
commit eef4e52254
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1 @@
EXCALIDRAW_HOSTNAME=excalidraw.example.com

1
productivity/excalidraw/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

View File

@ -0,0 +1,2 @@
# Excalidraw
Self hosted collaboration software.

View File

@ -0,0 +1,17 @@
networks:
traefik:
external: true
services:
excalidraw:
image: excalidraw/excalidraw:latest
container_name: excalidraw
restart: unless-stopped
networks:
- traefik
labels:
- "traefik.http.routers.excalidraw.rule=Host(`${EXCALIDRAW_HOSTNAME}`)"
- "traefik.http.routers.excalidraw.tls=true"
- "traefik.http.routers.excalidraw.tls.certresolver=lets-encrypt"
- "traefik.http.services.excalidraw.loadbalancer.server.port=80"