You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

docker-compose.yml 665B

12345678910111213141516171819202122232425
  1. version: '2'
  2. services:
  3. openhab:
  4. build: ./openhab
  5. container_name: openhab-openhab
  6. tty: true
  7. # restart: unless-stopped
  8. networks:
  9. openhab.internal.docker:
  10. aliases:
  11. - openhab.openhab.internal.docker
  12. volumes:
  13. - ./data/openhab/addons:/openhab/addons
  14. - ./data/openhab/conf:/openhab/conf
  15. - ./data/openhab/userdata:/openhab/userdata
  16. ports:
  17. - "127.0.0.1:35110:8080"
  18. #devices:
  19. # - "/dev/ttyACM0:/dev/ttyACM0"
  20. env_file:
  21. - env
  22. networks:
  23. openhab.internal.docker: