docker-compose.yml 519 B

12345678910111213141516171819
  1. services:
  2. bambuddy:
  3. build: .
  4. container_name: bambuddy
  5. # OPTIONAL: Host network mode can help if you have camera or printer
  6. # discovery issues. Docker's default bridge networking works in most setups.
  7. # network_mode: host # Uncomment this and remove "ports:" below if needed
  8. ports:
  9. - "8000:8000"
  10. volumes:
  11. - bambuddy_data:/app/data
  12. - bambuddy_logs:/app/logs
  13. environment:
  14. - TZ=Europe/Berlin
  15. restart: unless-stopped
  16. volumes:
  17. bambuddy_data:
  18. bambuddy_logs: