22 lines
446 B
YAML
22 lines
446 B
YAML
services:
|
|
excalidraw:
|
|
container_name: excalidraw
|
|
image: excalidraw/excalidraw:latest
|
|
environment:
|
|
- PUID=1029
|
|
- PGID=1000
|
|
ports:
|
|
- "3030:80"
|
|
restart: on-failure
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.excalidraw.rule=Host(`excalidraw.nearfuture`)"
|
|
- "traefik.http.routers.excalidraw.entrypoints=web"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|