This commit is contained in:
Alexandre
2021-07-07 17:52:21 +02:00
parent 37cc9f4d97
commit 14f37e920d
7 changed files with 97 additions and 0 deletions

1
mealie/CHANGELOG.md Normal file
View File

@@ -0,0 +1 @@
- :arrow_up: Initial release

32
mealie/Dockerfile Normal file
View File

@@ -0,0 +1,32 @@
ARG BUILD_FROM
ARG BUILD_VERSION
FROM ${BUILD_FROM}
VOLUME [ "/data" ]
### LABELS
ARG BUILD_ARCH
ARG BUILD_DATE
ARG BUILD_DESCRIPTION
ARG BUILD_NAME
ARG BUILD_REF
ARG BUILD_REPOSITORY
ARG BUILD_VERSION
LABEL \
io.hass.name="${BUILD_NAME}" \
io.hass.description="${BUILD_DESCRIPTION}" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.version=${BUILD_VERSION} \
maintainer="tyjtyj (https://github.com/tyjtyj)" \
org.opencontainers.image.title="${BUILD_NAME}" \
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
org.opencontainers.image.vendor="Home Assistant Add-ons" \
org.opencontainers.image.authors="tyjtyj (https://github.com/tyjtyj)" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.url="https://github.com/tyjtyj" \
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REF} \
org.opencontainers.image.version=${BUILD_VERSION}

27
mealie/README.md Normal file
View File

@@ -0,0 +1,27 @@
# Hass.io Add-ons: Mealie
![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield]
## About
A Self Hosted Recipe Manager
This addon is based on the [docker image](https://hub.docker.com/r/hkotel/mealie) from hay-kot.
## Installation
The installation of this add-on is pretty straightforward and not different in
comparison to installing any other Hass.io add-on.
1. [Add my Hass.io add-ons repository][repository] to your Hass.io instance.
1. Install this add-on.
1. Click the `Save` button to store your configuration.
1. Start the add-on.
1. Check the logs of the add-on to see if everything went well.
1. Carefully configure the add-on to your preferences, see the official documentation for for that.
## Configuration
- Start the addon. Wait a while and check the log for any errors.
- Open yourdomain.com:9925 (where ":9925" is the port configured in the addon).
## Support
If you have in issue with your installation, please be sure to checkout github.

8
mealie/build.json Normal file
View File

@@ -0,0 +1,8 @@
{
"build_from": {
"armhf" : "hkotel/mealie:v0.4.3",
"armv7": "hkotel/mealie:v0.4.3",
"aarch64": "hkotel/mealie:latest",
"amd64" : "hkotel/mealie:latest"
}
}

29
mealie/config.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "Mealie",
"version": "0.5.1",
"upstream": "0.5.1",
"slug": "mealie",
"description": "A Self Hosted Recipe Manager",
"url": "https://github.com/alexbelgium/hassio-addons",
"webui": "http://[HOST]:[PORT:9925]",
"startup": "services",
"boot": "auto",
"ports": {
"9925/tcp": 9925
},
"ports_description": {
"9925/tcp": "Web interface"
},
"map": [
],
"environment": {
},
"options": {},
"schema": {},
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7"
]
}

BIN
mealie/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

BIN
mealie/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB