Skip to content

Commit 826b4b0

Browse files
authored
Merge pull request coollabsio#3695 from danielalves96/add_homebox-template
feat: add Homebox template
2 parents df7494b + dce02c1 commit 826b4b0

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

public/svgs/homebox.svg

Lines changed: 11 additions & 0 deletions
Loading

templates/compose/homebox.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# documentation: https://github.com/hay-kot/homebox
2+
# slogan: Homebox is a self-hosted file management solution.
3+
# tags: homebox,file-management,self-hosted
4+
# logo: svgs/homebox.svg
5+
# port: 7745
6+
7+
version: "3.8"
8+
9+
services:
10+
homebox:
11+
image: ghcr.io/hay-kot/homebox:latest
12+
container_name: "homebox"
13+
restart: unless-stopped
14+
environment:
15+
- SERVICE_FQDN_HOMEBOX_7745
16+
- HBOX_LOG_LEVEL=info
17+
- HBOX_LOG_FORMAT=text
18+
- HBOX_WEB_MAX_UPLOAD_SIZE=10
19+
volumes:
20+
- homebox-data:/data/
21+
healthcheck:
22+
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:7745"]
23+
interval: 5s
24+
timeout: 20s
25+
retries: 10
26+
27+
volumes:
28+
homebox-data:
29+
driver: local

0 commit comments

Comments
 (0)