mirror of
				https://gitlab.sectorq.eu/home/docker-compose.git
				synced 2025-10-31 02:21:10 +01:00 
			
		
		
		
	lala
This commit is contained in:
		| @@ -29,7 +29,7 @@ services: | |||||||
|       - homepage.widget.url=https://ha.sectorq.eu |       - homepage.widget.url=https://ha.sectorq.eu | ||||||
|       - homepage.widget.key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIzOTk5NGJjYjIzYjk0YzExYmM5OWZiNTBlNzU0N2M2YyIsImlhdCI6MTc0MDM5OTY4NCwiZXhwIjoyMDU1NzU5Njg0fQ.LDebvPGreyZzlWT1CylHSdSt8i_cWO72HnNCsCAIaG8 |       - homepage.widget.key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiIzOTk5NGJjYjIzYjk0YzExYmM5OWZiNTBlNzU0N2M2YyIsImlhdCI6MTc0MDM5OTY4NCwiZXhwIjoyMDU1NzU5Njg0fQ.LDebvPGreyZzlWT1CylHSdSt8i_cWO72HnNCsCAIaG8 | ||||||
|       #- homepage.widget.custom=[{"state","sensor.sonoff_1001555a27_power"}] |       #- homepage.widget.custom=[{"state","sensor.sonoff_1001555a27_power"}] | ||||||
|     restart: always |     restart: ${RESTART:-unless-stopped} | ||||||
|     dns: |     dns: | ||||||
|       - 192.168.77.101 |       - 192.168.77.101 | ||||||
|   # ollama: |   # ollama: | ||||||
| @@ -54,7 +54,7 @@ services: | |||||||
|     volumes: |     volumes: | ||||||
|       - /share/docker_data/esphome/config:/config |       - /share/docker_data/esphome/config:/config | ||||||
|       - /etc/localtime:/etc/localtime:ro |       - /etc/localtime:/etc/localtime:ro | ||||||
|     restart: always |     restart: ${RESTART:-unless-stopped} | ||||||
|     privileged: true |     privileged: true | ||||||
|     network_mode: host |     network_mode: host | ||||||
|     environment: |     environment: | ||||||
| @@ -84,7 +84,7 @@ services: | |||||||
|       - /share/docker_data/piper/english:/data |       - /share/docker_data/piper/english:/data | ||||||
|     command: --voice en_US-lessac-medium |     command: --voice en_US-lessac-medium | ||||||
|  |  | ||||||
|     restart: always |     restart: ${RESTART:-unless-stopped} | ||||||
|     labels: |     labels: | ||||||
|       com.centurylinklabs.watchtower.enable: true |       com.centurylinklabs.watchtower.enable: true | ||||||
|   wyoming-whisper-en: |   wyoming-whisper-en: | ||||||
| @@ -95,7 +95,7 @@ services: | |||||||
|     volumes: |     volumes: | ||||||
|       - /share/docker_data/whisper/english:/data |       - /share/docker_data/whisper/english:/data | ||||||
|     command: --model tiny-int8 --language en |     command: --model tiny-int8 --language en | ||||||
|     restart: always |     restart: ${RESTART:-unless-stopped} | ||||||
|     labels: |     labels: | ||||||
|       com.centurylinklabs.watchtower.enable: true |       com.centurylinklabs.watchtower.enable: true | ||||||
|   openwakeword: |   openwakeword: | ||||||
| @@ -115,7 +115,7 @@ services: | |||||||
|       - /share/docker_data/openwakeword-data:/custom  # Place my custom wakewords here |       - /share/docker_data/openwakeword-data:/custom  # Place my custom wakewords here | ||||||
|     environment: |     environment: | ||||||
|       - TZ=Europe/Bratislava |       - TZ=Europe/Bratislava | ||||||
|     restart: always |     restart: ${RESTART:-unless-stopped} | ||||||
|     ports: |     ports: | ||||||
|       - 10400:10400 |       - 10400:10400 | ||||||
|       - 10400:10400/udp |       - 10400:10400/udp | ||||||
| @@ -124,7 +124,7 @@ services: | |||||||
|   matter-server: |   matter-server: | ||||||
|     container_name: matter-server |     container_name: matter-server | ||||||
|     image: ghcr.io/home-assistant-libs/python-matter-server:stable |     image: ghcr.io/home-assistant-libs/python-matter-server:stable | ||||||
|     restart: unless-stopped |     restart: ${RESTART:-unless-stopped} | ||||||
|     security_opt: |     security_opt: | ||||||
|       - apparmor=unconfined |       - apparmor=unconfined | ||||||
|     volumes: |     volumes: | ||||||
| @@ -137,7 +137,7 @@ services: | |||||||
|   music-assistant-server: |   music-assistant-server: | ||||||
|     image: ghcr.io/music-assistant/server:latest # <<< Desired release version here (or use beta to get the latest beta version) |     image: ghcr.io/music-assistant/server:latest # <<< Desired release version here (or use beta to get the latest beta version) | ||||||
|     container_name: music-assistant-server |     container_name: music-assistant-server | ||||||
|     restart: unless-stopped |     restart: ${RESTART:-unless-stopped} | ||||||
|     # Network mode must be set to host for MA to work correctly |     # Network mode must be set to host for MA to work correctly | ||||||
|     network_mode: host |     network_mode: host | ||||||
|     volumes: |     volumes: | ||||||
| @@ -166,8 +166,8 @@ services: | |||||||
|       - DOCKER_INFLUXDB_INIT_PASSWORD=haHAhaHA |       - DOCKER_INFLUXDB_INIT_PASSWORD=haHAhaHA | ||||||
|       - DOCKER_INFLUXDB_INIT_ORG=ha |       - DOCKER_INFLUXDB_INIT_ORG=ha | ||||||
|       - DOCKER_INFLUXDB_INIT_BUCKET=ha |       - DOCKER_INFLUXDB_INIT_BUCKET=ha | ||||||
|     image: influxdb:2 |     image: ${DOCKER_REGISTRY:-}influxdb:2 | ||||||
|     restart: unless-stopped |     restart: ${RESTART:-unless-stopped} | ||||||
|     healthcheck: |     healthcheck: | ||||||
|       test: "echo  test > /var/lib/influxdb2/hc || exit 1" |       test: "echo  test > /var/lib/influxdb2/hc || exit 1" | ||||||
|       interval: 10s |       interval: 10s | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user