mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for BabyBuddy service, including environment variables and volume configuration. - Added logo for BabyBuddy. - Created template.toml for BabyBuddy with default variables for configuration.
19 lines
372 B
YAML
19 lines
372 B
YAML
version: "3.8"
|
|
services:
|
|
babybuddy:
|
|
image: linuxserver/babybuddy:2.7.0
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8000
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=UTC
|
|
- CSRF_TRUSTED_ORIGINS=https://${DOMAIN}
|
|
- TIME_ZONE=${TIME_ZONE:-UTC}
|
|
- SECRET_KEY=${SECRET_KEY}
|
|
volumes:
|
|
- config:/config
|
|
|
|
volumes:
|
|
config: {} |