Draw.io

I’ve created a docker-compose.yml file for to run draw.io:

draw:
  restart: always
  image: fjudith/drawio
  ports:
    - "${IP_ADDRESS}8180:8080"
  depends_on:
    - nginx-proxy
  environment:
    - VIRTUAL_HOST=draw,draw.akendo.eu
    - VIRTUAL_PORT=8080

Nothing special, but I felt like sharing it here. You can run it with docker-compose up draw

Best regards, akendo