Small docker image with Appdaemon based on Alpine Linux.
This image should be available (unless automated build failed) for the following architectures:
- amd64
- armhf
- arm64
I'm using a proper manifest so you can use the main tags ("latest" and version-based "X.X" or "X.X.X") directly (no need for amd64-X.X.X).
If you want to learn more about multi-architecture docker images, please read this blog post
docker run -d --name appdaemon -p 80:5050 kurapov/alpine-appdaemon
It's recommended to map a directory into the container to configure Appdaemon.
-v /var/opt/docker/appdaemon:/conf \
By default this container run as root but there is an embedded user with uid 1000 so you can start your image like that :
docker run -it --user 1000 --rm -v /var/opt/docker/appdaemon:/conf kurapov/alpine-appdaemon
Of course you need to have a local user with uid 1000.
This project is licensed under Apache License v2.0
.