From 71a66adcdfe24af71ae525bf33fe8486a9b7d10b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 14 May 2017 00:46:58 -0700 Subject: [PATCH] Update addon_tutorial.markdown --- source/hassio/addon_tutorial.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/hassio/addon_tutorial.markdown b/source/hassio/addon_tutorial.markdown index 32d9967b944..1b686f00538 100644 --- a/source/hassio/addon_tutorial.markdown +++ b/source/hassio/addon_tutorial.markdown @@ -36,7 +36,7 @@ CMD [ "/run.sh" ] ```json { "name": "Hello world", - "version": "0.1", + "version": "1", "slug": "hello_world", "description": "My first real add-on!", "startup": "before", @@ -106,7 +106,8 @@ Add to your `Dockerfile` before `RUN`: # Install requirements for add-on RUN apk add --no-cache python3 -# Set directory for Python 3 HTTP server to serve +# Python 3 HTTP Server serves the current working dir +# So let's set it to our add-on persistent data directory. WORKDIR /data ```