| 1234567891011121314151617181920212223 |
- services:
- bambuddy:
- build: .
- container_name: bambuddy
- # Network mode options:
- # - Default (bridge): Works for basic usage, but printer discovery and
- # camera streaming may not work since container can't reach LAN directly.
- # - Host mode: Required for printer discovery scanning and camera streaming.
- # Uncomment "network_mode: host" and remove "ports:" section below.
- #
- network_mode: host
- #ports:
- # - "8000:8000"
- volumes:
- - bambuddy_data:/app/data
- - bambuddy_logs:/app/logs
- environment:
- - TZ=Europe/Berlin
- restart: unless-stopped
- volumes:
- bambuddy_data:
- bambuddy_logs:
|