mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
first commit
This commit is contained in:
commit
149e02a10d
72 changed files with 3442 additions and 0 deletions
4
homebox/README.md
Normal file
4
homebox/README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Compose file for [template]
|
||||
## Services
|
||||
## Environment Variables
|
||||
- EXAMPLE_VAR - Description
|
28
homebox/compose.yaml
Normal file
28
homebox/compose.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
services:
|
||||
homebox:
|
||||
image: ghcr.io/sysadminsmedia/homebox:latest-rootless
|
||||
container_name: homebox
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- HBOX_LOG_LEVEL=info
|
||||
- HBOX_LOG_FORMAT=text
|
||||
- HBOX_WEB_MAX_FILE_UPLOAD=10
|
||||
- HBOX_OPTIONS_ALLOW_ANALYTICS=false
|
||||
volumes:
|
||||
- homebox_data:/data/
|
||||
networks:
|
||||
- default
|
||||
- proxy
|
||||
labels:
|
||||
caddy: homebox.ferngarden.net
|
||||
caddy.import: internal
|
||||
caddy.reverse_proxy: '{{ upstreams 7745 }}'
|
||||
|
||||
networks:
|
||||
default:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
homebox_data:
|
||||
name: homebox_data
|
Loading…
Add table
Add a link
Reference in a new issue