First Launch

🚀 Add Home Assistant Newt Add-on

Commit description:

    Added config.yaml for add-on configuration
    Created Dockerfile to build the add-on container
    Implemented run.sh to start and manage the Newt container
    Included a detailed README.md with installation and usage instructions
    Prepared repository for Home Assistant custom add-on support
This commit is contained in:
Jørgen Ferdinand 2025-03-07 21:48:20 +01:00
commit 17337c1323
4 changed files with 152 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM ghcr.io/hassio-addons/base:14.0.0
# Install dependencies
RUN apk add --no-cache docker-cli
# Copy the run script
COPY run.sh /run.sh
RUN chmod +x /run.sh
CMD [ "/run.sh" ]