mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
28 lines
No EOL
592 B
YAML
28 lines
No EOL
592 B
YAML
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 |