Skip to content

Commit

Permalink
Update installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmatte authored May 5, 2020
1 parent c989d2b commit 28db969
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Use [HACS](https://hacs.xyz/) or download the `media_lights_sync` directory from

## Prerequisites

In order for this app to work, you need to add the following packages to your main AppDaemon config:
In order for this app to work, you need to add the following packages to the config of your AppDaemon 4 Supervisor add-on:

```yaml
system_packages:
Expand All @@ -39,6 +39,15 @@ python_packages:
- Pillow
```
If you are running AppDaemon in your own docker container, you must create and build a docker image with the above dependencies using a [Dockerfile](https://docs.docker.com/engine/reference/builder/) similar to this (**untested**):
```Dockerfile
FROM acockburn/appdaemon:latest
# Manually install the dependencies
RUN apk add musl make g++ python3-dev build-base jpeg-dev zlib-dev
RUN pip3 install Pillow
```

## App configuration

```yaml
Expand Down

0 comments on commit 28db969

Please sign in to comment.