casjay 091a214062
Some checks failed
release-tag / release-image (push) Has been cancelled
🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
Update the embedded entrypoint copies in rootfs/ to match the
upstream template change. Internal state files renamed to dotfiles
so they're not matched by `/run/*.pid` cleanup globs:
- /run/init.d/entrypoint.pid -> /run/.entrypoint.pid
- /run/no_exit.pid -> /run/.no_exit.pid
- /run/backup.pid -> /run/.backup.pid
- /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid
Per-service PIDs in /run/init.d/ are unchanged.

rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:13:40 -04:00
2025-02-04 09:30:38 -05:00
2022-10-11 16:09:07 -04:00
2022-10-04 18:11:47 -04:00
2023-01-08 11:22:31 -05:00
2025-09-16 19:39:12 -04:00
2025-09-16 19:39:12 -04:00
2025-11-23 08:48:37 -05:00
2023-01-08 11:22:31 -05:00
2025-11-29 11:05:20 -05:00
2025-09-05 13:37:27 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:58:14 -04:00
🗃️ modified: README.md 🗃️
2022-07-09 13:28:24 -04:00

👋 ympd Readme 👋

ympd README

Run container

via command line

docker run -d \
--restart always \
--name ympd \
--device /dev/snd \
-e HOSTNAME=ympd \
-e TZ=${TIMEZONE:-America/New_York} \
-e MYMPD_SSL=false \
-v $PWD/ympd/data/mpd:/var/lib/mpd:z \
-v $PWD/ympd/data/mympd:/var/lib/mympd:z \
-v $PWD/ympd/config:/config:z \
-v $HOME/Music:/music:z \
-p 6600:600 \
-p 8082:8082 \
casjaysdev/ympd:latest

via docker-compose

version: "2"
services:
  ympd:
    image: casjaysdevdocker/ympd
    container_name: ympd
    environment:
      - TZ=America/New_York
      - HOSTNAME=ympd
    volumes:
      - $HOME/Music:/music
      - $HOME/.local/share/docker/storage/ympd/data/mpd:/var/lib/mpd \
      - $HOME/.local/share/docker/storage/ympd/data/mympd:/var/lib/mympd \
      - $HOME/.local/share/docker/storage/ympd/config:/config \
    ports:
      - 80:80
    restart: always

Authors

🤖 Casjay: Github Docker 🤖
CasjaysDev: Github Docker

Description
Docker container for ympd
Readme 459 KiB
Languages
Shell 91.7%
Dockerfile 8.3%