Workflow update

main
technorabilia 2 years ago
parent a4113c5d49
commit 162100ca9b

@ -9,6 +9,10 @@ services:
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)

@ -5,6 +5,8 @@
source ./.env
docker run -d \
--name=babybuddy \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e CSRF_TRUSTED_ORIGINS=http://127.0.0.1:8000,https://babybuddy.domain.com `# Add any address you'd like to access babybuddy at (comma separated, no spaces)` \
-p 8000:8000 `# the port for the web ui` \

Loading…
Cancel
Save