From 9535190b5aa7d94332e07c308196eb8f4f6f74ed Mon Sep 17 00:00:00 2001 From: jaydee Date: Sat, 27 Dec 2025 19:16:52 +0100 Subject: [PATCH] build --- homebox/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 homebox/docker-compose.yml diff --git a/homebox/docker-compose.yml b/homebox/docker-compose.yml new file mode 100644 index 0000000..c65a6d4 --- /dev/null +++ b/homebox/docker-compose.yml @@ -0,0 +1,18 @@ +services: + homebox: + image: ghcr.io/hay-kot/homebox:latest +# image: ghcr.io/hay-kot/homebox:latest-rootless + container_name: homebox + restart: always + environment: + - HBOX_LOG_LEVEL=info + - HBOX_LOG_FORMAT=text + - HBOX_WEB_MAX_UPLOAD_SIZE=10 + volumes: + - data:/data/ + ports: + - 3100:7745 + +volumes: + data: + driver: local \ No newline at end of file