mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-23 09:05:42 +00:00
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>
This commit is contained in:
parent
56c98e6e3a
commit
66e25ba068
4 changed files with 86 additions and 1 deletions
13
.github/workflows/partial-publish.yaml
vendored
13
.github/workflows/partial-publish.yaml
vendored
|
@ -64,3 +64,16 @@ jobs:
|
||||||
--build-arg COMMIT=$(git rev-parse HEAD) \
|
--build-arg COMMIT=$(git rev-parse HEAD) \
|
||||||
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||||
--platform linux/amd64,linux/arm64,linux/arm/v7 .
|
--platform linux/amd64,linux/arm64,linux/arm/v7 .
|
||||||
|
|
||||||
|
- name: build release tagged the rootless image
|
||||||
|
if: ${{ inputs.release == true }}
|
||||||
|
run: |
|
||||||
|
docker build --push --no-cache \
|
||||||
|
--tag ghcr.io/hay-kot/homebox:nightly-rootless \
|
||||||
|
--tag ghcr.io/hay-kot/homebox:latest-rootless \
|
||||||
|
--tag ghcr.io/hay-kot/homebox:${{ inputs.tag }}-rootless \
|
||||||
|
--build-arg VERSION=${{ inputs.tag }} \
|
||||||
|
--build-arg COMMIT=$(git rev-parse HEAD) \
|
||||||
|
--build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||||
|
--platform linux/amd64,linux/arm64,linux/arm/v7 \
|
||||||
|
--file Dockerfile.rootless .
|
||||||
|
|
53
Dockerfile.rootless
Normal file
53
Dockerfile.rootless
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
|
||||||
|
# Build Nuxt
|
||||||
|
FROM node:17-alpine as frontend-builder
|
||||||
|
WORKDIR /app
|
||||||
|
RUN npm install -g pnpm
|
||||||
|
COPY frontend/package.json frontend/pnpm-lock.yaml ./
|
||||||
|
RUN pnpm install --frozen-lockfile --shamefully-hoist
|
||||||
|
COPY frontend .
|
||||||
|
RUN pnpm build
|
||||||
|
|
||||||
|
# Build API
|
||||||
|
FROM golang:alpine AS builder
|
||||||
|
ARG BUILD_TIME
|
||||||
|
ARG COMMIT
|
||||||
|
ARG VERSION
|
||||||
|
RUN apk update && \
|
||||||
|
apk upgrade && \
|
||||||
|
apk add --update git build-base gcc g++
|
||||||
|
|
||||||
|
WORKDIR /go/src/app
|
||||||
|
COPY ./backend .
|
||||||
|
RUN go get -d -v ./...
|
||||||
|
RUN rm -rf ./app/api/public
|
||||||
|
COPY --from=frontend-builder /app/.output/public ./app/api/static/public
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux go build \
|
||||||
|
-ldflags "-s -w -X main.commit=$COMMIT -X main.buildTime=$BUILD_TIME -X main.version=$VERSION" \
|
||||||
|
-o /go/bin/api \
|
||||||
|
-v ./app/api/*.go && \
|
||||||
|
chmod +x /go/bin/api && \
|
||||||
|
# create a directory so that we can copy it in the next stage
|
||||||
|
mkdir /data
|
||||||
|
|
||||||
|
# Production Stage
|
||||||
|
FROM gcr.io/distroless/static
|
||||||
|
|
||||||
|
ENV HBOX_MODE=production
|
||||||
|
ENV HBOX_STORAGE_DATA=/data/
|
||||||
|
ENV HBOX_STORAGE_SQLITE_URL=/data/homebox.db?_fk=1
|
||||||
|
|
||||||
|
# Copy the binary and the (empty) /data dir and
|
||||||
|
# change the ownership to the low-privileged user
|
||||||
|
COPY --from=builder --chown=nonroot /go/bin/api /app
|
||||||
|
COPY --from=builder --chown=nonroot /data /data
|
||||||
|
|
||||||
|
LABEL Name=homebox Version=0.0.1
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/hay-kot/homebox"
|
||||||
|
EXPOSE 7745
|
||||||
|
VOLUME [ "/data" ]
|
||||||
|
|
||||||
|
# Drop root and run as low-privileged user
|
||||||
|
USER nonroot
|
||||||
|
ENTRYPOINT [ "/app" ]
|
||||||
|
CMD [ "/data/config.yml" ]
|
|
@ -16,6 +16,10 @@
|
||||||
[Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start)
|
[Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# 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 \
|
docker run -d \
|
||||||
--name homebox \
|
--name homebox \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
|
@ -23,6 +27,7 @@ docker run -d \
|
||||||
--env TZ=Europe/Bucharest \
|
--env TZ=Europe/Bucharest \
|
||||||
--volume /path/to/data/folder/:/data \
|
--volume /path/to/data/folder/:/data \
|
||||||
ghcr.io/hay-kot/homebox:latest
|
ghcr.io/hay-kot/homebox:latest
|
||||||
|
# ghcr.io/hay-kot/homebox:latest-rootless
|
||||||
```
|
```
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
|
@ -4,14 +4,24 @@
|
||||||
|
|
||||||
Great for testing out the application, but not recommended for stable use. Checkout the docker-compose for the recommended deployment.
|
Great for testing out the application, but not recommended for stable use. Checkout the docker-compose for the recommended deployment.
|
||||||
|
|
||||||
|
For each image there are two tags, respectively the regular tag and $TAG-rootless, which uses a non-root image.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker run -d \
|
# 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
|
||||||
|
# ---------------------------------------
|
||||||
|
# Run the image
|
||||||
|
$ docker run -d \
|
||||||
--name homebox \
|
--name homebox \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
--publish 3100:7745 \
|
--publish 3100:7745 \
|
||||||
--env TZ=Europe/Bucharest \
|
--env TZ=Europe/Bucharest \
|
||||||
--volume /path/to/data/folder/:/data \
|
--volume /path/to/data/folder/:/data \
|
||||||
ghcr.io/hay-kot/homebox:latest
|
ghcr.io/hay-kot/homebox:latest
|
||||||
|
# ghcr.io/hay-kot/homebox:latest-rootless
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Docker-Compose
|
## Docker-Compose
|
||||||
|
@ -22,6 +32,7 @@ version: "3.4"
|
||||||
services:
|
services:
|
||||||
homebox:
|
homebox:
|
||||||
image: ghcr.io/hay-kot/homebox:latest
|
image: ghcr.io/hay-kot/homebox:latest
|
||||||
|
# image: ghcr.io/hay-kot/homebox:latest-rootless
|
||||||
container_name: homebox
|
container_name: homebox
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
|
@ -38,6 +49,9 @@ volumes:
|
||||||
driver: local
|
driver: local
|
||||||
```
|
```
|
||||||
|
|
||||||
|
!!! note
|
||||||
|
If you use the `rootless` image, and instead of using named volumes you would prefer using a hostMount directly (e.g., `volumes: [ /path/to/data/folder:/data ]`) you need to `chown` the chosen directory in advance to the `65532` user (as shown in the Docker example above).
|
||||||
|
|
||||||
## Env Variables & Configuration
|
## Env Variables & Configuration
|
||||||
|
|
||||||
| Variable | Default | Description |
|
| Variable | Default | Description |
|
||||||
|
|
Loading…
Reference in a new issue