Replies: 1 comment
-
|
I'm running HA in docker with baby buddy as a totally separate container so I can verify that it does work, but I've had it running for like 6 months now (for my 18-day-old baby, perhaps over-prepared 😂) so I don't know that I can help figure out why it's not working in your setup Here's my docker-compose if it helps: version: "2.1"
services:
babybuddy:
image: lscr.io/linuxserver/babybuddy
environment:
TZ: ${TZ}
PUID: 1000
PGID: 1000
DB_ENGINE: django.db.backends.postgresql
DB_HOST: postgres
DB_NAME: ${POSTGRES_DB}
DB_PASSWORD: ${POSTGRES_PASSWORD}
DB_USER: ${POSTGRES_USER}
DB_PORT: 5432
DEBUG: ${DEBUG}
CSRF_TRUSTED_ORIGINS: ${CSRF_TRUSTED_ORIGINS}
volumes:
- /home/myhomedir/.config/babybuddy:/config
ports:
- 18871:8000
restart: unless-stopped
postgres:
image: "postgres:18"
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DB}
TZ: ${TZ}
volumes:
- pgdata:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
interval: 1s
retries: 10
start_period: 5s
timeout: 2s
volumes:
pgdata:Other than the postgres variables the only env vars I have set are my timezone and |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have home assistant installed on docker, I would like to access to baby buddy from the home assistant app like you can do with ingress on home assistant OS
I tried whit hass_ingress but can’t figure out
Anyone else has tried this?
Beta Was this translation helpful? Give feedback.
All reactions