mirror of
https://github.com/runyanjake/olomana.git
synced 2025-12-10 16:27:30 -08:00
Add excalidraw
This commit is contained in:
parent
ab4cfe249b
commit
eef4e52254
1
productivity/excalidraw/.env.example
Normal file
1
productivity/excalidraw/.env.example
Normal file
@ -0,0 +1 @@
|
||||
EXCALIDRAW_HOSTNAME=excalidraw.example.com
|
||||
1
productivity/excalidraw/.gitignore
vendored
Normal file
1
productivity/excalidraw/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.env
|
||||
2
productivity/excalidraw/README.md
Normal file
2
productivity/excalidraw/README.md
Normal file
@ -0,0 +1,2 @@
|
||||
# Excalidraw
|
||||
Self hosted collaboration software.
|
||||
17
productivity/excalidraw/docker-compose.yml
Normal file
17
productivity/excalidraw/docker-compose.yml
Normal 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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user