Eric Hough

Results 43 comments of Eric Hough

Let's do it! I own a Pi that I can use to test. There should be minimal modifications that need to be done to the code; I think most of...

Thanks for the suggestion! At the very least, I think it would be a great optional feature. Let me see if I can whip something up.

The `PGID` and `PUID` environment variables aren't recognized by the image. Instead you should use the `user` option in your `docker-compose.yml` file. e.g. ```yaml user: '1000:1000' ``` That should fix...

One more thing. If you run the image from a UID other than 0, you'll also need to bind-mount a `machine-id` into `/var/lib/dbus/machine-id`. e.g. ```yaml volumes: ... - /host/path/to-machine-id.txt:/var/lib/dbus/machine-id:ro ```...

> Looks to be working great! Fantastic! Glad it's working for you. > A bit unrelated but is this the correct syntax for getting the machine id as an environmental...

Gotcha. That syntax is correct, but what's happening is that if you use the `MACHINE_ID` environment variable, the container will [write](https://github.com/ehough/docker-duplicacy/blob/develop/entrypoint.sh#L63) its value to `/var/lib/dbus/machine-id`. In your case, you're running...

Great idea! I will add something like this as soon as I can. Thanks for the sample!

@mviereck Thanks, as always, for your help! As @kanyck pointed out, Kodi is indeed supposed to work via Wayland. Closing this ticket as the issue is more with x11docker, but...

Thanks for your suggestion. I *love* Alpine prefer to use it whenever possible. The only reason I went with Ubuntu thus far was because Kodi offered off-the-shelf [support/docs](https://kodi.wiki/view/HOW-TO:Install_Kodi_for_Linux#Installing_Kodi_on_Ubuntu-based_distributions) for it...

Thanks so much for these great suggestions! And sorry for my late response. > Use DEBIAN_FRONTEND=noninteractive before apt calls, and export it as env var. I have run into cases...