| 12345678910111213141516171819 |
- services:
- bambuddy:
- build: .
- container_name: bambuddy
- # OPTIONAL: Host network mode can help if you have camera or printer
- # discovery issues. Docker's default bridge networking works in most setups.
- # network_mode: host # Uncomment this and remove "ports:" below if needed
- ports:
- - "8000:8000"
- volumes:
- - bambuddy_data:/app/data
- - bambuddy_logs:/app/logs
- environment:
- - TZ=Europe/Berlin
- restart: unless-stopped
- volumes:
- bambuddy_data:
- bambuddy_logs:
|