app-store/apps/excalidraw/docker-compose.yml
2023-03-28 02:06:02 -04:00

19 lines
580 B
YAML

version: "3"
services:
excalidraw:
container_name: excalidraw
image: excalidraw/excalidraw:latest
ports:
- ${APP_PORT}:80
restart: unless-stopped
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.excalidraw.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.excalidraw.entrypoints: websecure
traefik.http.routers.excalidraw.service: excalidraw
traefik.http.routers.excalidraw.tls.certresolver: myresolver
traefik.http.services.excalidraw.loadbalancer.server.port: 80