From 4ae456b7142358d2fdcda7d14496458863fbccb0 Mon Sep 17 00:00:00 2001 From: drosoCode Date: Sat, 19 Aug 2023 20:01:10 +0200 Subject: [PATCH] add test docker compose --- .gitignore | 1 + configuration.yaml | 8 ++++++++ docker-compose.yml | 13 +++++++++++++ 3 files changed, 22 insertions(+) create mode 100755 configuration.yaml create mode 100755 docker-compose.yml diff --git a/.gitignore b/.gitignore index bee8a64..6c99216 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ __pycache__ +data \ No newline at end of file diff --git a/configuration.yaml b/configuration.yaml new file mode 100755 index 0000000..a8e9f7e --- /dev/null +++ b/configuration.yaml @@ -0,0 +1,8 @@ +# Loads default set of integrations. Do not remove. +default_config: + +logger: + default: warning + logs: + homeassistant.components.bluetooth: debug + custom_components.bluerpc: debug \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100755 index 0000000..f6b036c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +version: '3' +services: + homeassistant_test: + build: . + volumes: + - ./data:/config + - ./configuration.yaml:/config/configuration.yaml + - ./custom_components/bluerpc:/config/custom_components/bluerpc + environment: + - TZ=Europe/Paris + restart: unless-stopped + ports: + - 8124:8123