dhrone / pydPiper

A general purpose program to display song metadata on LCD and OLED devices
MIT License
78 stars 36 forks source link

moodeaudio 7.4.1 pydpiper will not start #126

Open ulischlee opened 2 years ago

ulischlee commented 2 years ago

I like to use pydpiper on moodeaudio for a longer time with a hd44780 20x4 display. Now I made a fresh install with moode 7.4.1 and after the installation of pydpiper I test it with

sudo /usr/bin/docker run --network=host --privileged -ti -v /var/log:/var/log:rw -v /home/pi/pydPiper:/app:rw dhrone/pydpiper:v0.31-alpha /bin/bash python pydPiper.py

it works fine.

But when I activate the pydpiper.service and reboot, pydpiper won't start.

The command systemctl status pydpiper shows:

moode systemd[ ]: Started pydPiper moode docker[ ]: python: can't open file '/app/pydPiper.py': (Errno 2] No such file or directory

I think the docker container dies and gets restartet, till it dies again.

I've no idea what to do.

Regards Uli

dhrone commented 2 years ago

Can you provide a copy of your pydpiper.service file?

ulischlee commented 2 years ago

Hi,

the pydpiper.service file is attached.

It is unchanged from the convenience script. In former installations, I tried to delay the start of docker or changed "after = volumio.service" to another service, that I wanted to start earlier.

But nothing showed a positive effect.

I run moode on a Rpi3B with a 16GB sd card with an expanded file system. In earlier installations I used a Rpi Zero. But it wasn't the lack of power that caused the trouble with docker.

Regards

Uli

Am 02.11.2021 um 22:54 schrieb dhrone:

Can you provide a copy of your pydpiper.service file?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/dhrone/pydPiper/issues/126#issuecomment-958212049, or unsubscribe https://github.com/notifications/unsubscribe-auth/AWKH2AX5TYY4ZKQPNVGFPRTUKBTYVANCNFSM5HHKO7ZQ. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

[Unit] Description = pydPiper Requires = docker.service After = volumio.service

[Service] Restart = always ExecStart = /usr/bin/docker run --network=host --privileged -v /var/log:/var/log:rw -v /home/volumio/pydPiper:/app:rw dhrone/pydpiper:v0.31-alpha python /app/pydPiper.py

[Install] WantedBy = multi-user.target