# [Babybuddy](https://github.com/babybuddy/babybuddy) is a buddy for babies! # Helps caregivers track sleep, feedings, diaper changes, tummy time and more to # learn about and predict baby's needs without (as much) guess work. --- version: "2.1" services: babybuddy: image: ghcr.io/linuxserver/babybuddy container_name: babybuddy environment: # for UserID - PUID=${PUID:-1024} # for GroupID - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} # Add any address you'd like to access babybuddy at (comma separated, no spaces) - CSRF_TRUSTED_ORIGINS=http://127.0.0.1:8000,https://babybuddy.domain.com volumes: # Contains all relevant configuration and data. - ${BASEDIR:-/volume1/docker}/babybuddy/config:/config ports: # the port for the web ui - 8000:8000 restart: unless-stopped