From 68c40286744205bc0857ecc377cb5babd0c58007 Mon Sep 17 00:00:00 2001 From: theo Date: Fri, 13 Mar 2026 16:57:39 +0000 Subject: [PATCH] feat: docker compose for filebrowser quantum --- filebrowser-quantum/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 filebrowser-quantum/docker-compose.yml diff --git a/filebrowser-quantum/docker-compose.yml b/filebrowser-quantum/docker-compose.yml new file mode 100644 index 0000000..03afe9e --- /dev/null +++ b/filebrowser-quantum/docker-compose.yml @@ -0,0 +1,18 @@ +services: + filebrowser: + image: gtstef/filebrowser:stable + container_name: filebrowser-quantum + user: "1000:1000" + volumes: + - filebrowser_quantum_files:/folder:Z + - filebrowser_quantum_data:/home/filebrowser/data:Z + ports: + - "8080:80" + restart: always + + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:80/health"] + interval: 30s + timeout: 3s + start_period: 10s + retries: 3