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