From 9ab398133842a9a8cd2cffc8045cf6f467e2f8ac Mon Sep 17 00:00:00 2001 From: Yax Date: Wed, 1 Apr 2026 19:01:07 +0200 Subject: [PATCH] Add diun --- 00-diun/docker-compose.diun.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 00-diun/docker-compose.diun.yml diff --git a/00-diun/docker-compose.diun.yml b/00-diun/docker-compose.diun.yml new file mode 100644 index 0000000..b850822 --- /dev/null +++ b/00-diun/docker-compose.diun.yml @@ -0,0 +1,16 @@ +services: + diun: + image: crazymax/diun:latest + container_name: diun + command: serve + volumes: + - diun-data:/data + - ${ROOT_INSTALL}/data/diun/diun.yml:/diun.yml:ro + - /var/run/docker.sock:/var/run/docker.sock:ro + environment: + - TZ=${TZ} + - LOG_LEVEL=info + - LOG_JSON=false + restart: unless-stopped +volumes: + diun-data: \ No newline at end of file