diff --git a/homebox/docker-compose.yml b/homebox/docker-compose.yml new file mode 100644 index 0000000..92bef62 --- /dev/null +++ b/homebox/docker-compose.yml @@ -0,0 +1,20 @@ +services: + homebox: + image: ghcr.io/sysadminsmedia/homebox:latest +# image: ghcr.io/sysadminsmedia/homebox:latest-rootless + container_name: homebox + restart: always + environment: + - HBOX_LOG_LEVEL=info + - HBOX_LOG_FORMAT=text + - HBOX_WEB_MAX_FILE_UPLOAD=10 + # Please consider allowing analytics to help us improve Homebox (basic computer information, no personal data) + - HBOX_OPTIONS_ALLOW_ANALYTICS=false + volumes: + - homebox-data:/data/ + ports: + - 3100:7745 + +volumes: + homebox-data: + driver: local \ No newline at end of file diff --git a/homebox/readme.md b/homebox/readme.md new file mode 100644 index 0000000..34a7d04 --- /dev/null +++ b/homebox/readme.md @@ -0,0 +1 @@ +https://homebox.software/en/installation.html#docker \ No newline at end of file