forked from maziggy/bambuddy
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Docker Issues
Marko@VMHOMELAB edited this page Jun 13, 2026
·
1 revision
Check the container first:
docker compose ps
docker compose logs --tail=200 printbuddyThen verify the configured port:
ss -ltnp | grep 8000 || trueConfirm the compose image is current:
image: docker.io/vmhomelabde/printbuddy:latestThen update:
docker compose pull
docker compose up -d --force-recreateDocker Desktop on macOS/Windows does not support Linux-style network_mode: host. Comment out network_mode: host and enable the ports: section in the compose file.
The container normalizes /app/data and /app/logs ownership using PUID and PGID.
Check your host user IDs:
id -u
id -gSet matching values in the compose environment if needed.