Go to file
D M 66e25ba068
feat: Low-Privileged and Distroless Docker Image (#372)
* feat: use distroless image and non-root user

* fix: remove conflicts after merge

* chore: Commen the Dockerfile

* chore: Update documentation to reflect image changes

* Split docker build in latest and latest-rootless

One more job added to the publish Github Action, to build and push TAG-rootless
images.

* fix: add missing workflow

* feat: update documentation about double tags

* feat: update readme with double tags

---------

Co-authored-by: daniele <daniele@coolbyte.eu>
2023-05-13 10:38:57 -08:00
.devcontainer update go version in devcontainer to 1.20 to match version in go.mod (#402) 2023-04-09 10:38:17 -08:00
.github feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
.scaffold/model feat: Notifiers CRUD (#337) 2023-03-06 21:18:58 -09:00
.vscode chore: developer cleanup (#300) 2023-02-17 21:41:01 -09:00
backend fix(deps): update github.com/gocarina/gocsv digest to 7f30c79 (#448) 2023-05-13 10:34:45 -08:00
docs feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
frontend chore(deps): update dependency @faker-js/faker to v8 (#449) 2023-05-13 10:34:57 -08:00
.dockerignore end-to-end testing setup 2022-09-03 18:42:03 -08:00
.gitignore update git ignore 2023-03-25 11:20:38 -08:00
CONTRIBUTING.md feat: goreleaser + remove cgo dependency (#363) 2023-03-22 20:49:49 -08:00
Dockerfile feat: goreleaser + remove cgo dependency (#363) 2023-03-22 20:49:49 -08:00
Dockerfile.rootless feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
LICENSE feat: items-editor (#5) 2022-09-12 14:47:27 -08:00
README.md feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
SECURITY.md feat: items-editor (#5) 2022-09-12 14:47:27 -08:00
Taskfile.yml feat: goreleaser + remove cgo dependency (#363) 2023-03-22 20:49:49 -08:00
docker-compose.yml setup docker volumes & versions 2022-09-13 21:15:01 -08:00
fly.toml set fly.io build args 2022-10-13 17:12:35 -08:00
renovate.json Add renovate.json (#209) 2023-01-14 09:28:52 -09:00

README.md

HomeBox

Docs | Demo | Discord

Quick Start

Configuration & Docker Compose

# If using the rootless image, ensure data 
# folder has correct permissions
mkdir -p /path/to/data/folder
chown 65532:65532 -R /path/to/data/folder
docker run -d \
  --name homebox \
  --restart unless-stopped \
  --publish 3100:7745 \
  --env TZ=Europe/Bucharest \
  --volume /path/to/data/folder/:/data \
  ghcr.io/hay-kot/homebox:latest
# ghcr.io/hay-kot/homebox:latest-rootless

Credits