Compose-Examples/examples/home-assistant/docker-compose.yml
2025-02-11 09:21:42 +01:00

22 lines
555 B
YAML

services:
homeassistant:
image: linuxserver/homeassistant:latest
container_name: homeassistant
network_mode: host
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homeassistant/config:/config
#ports:
# - 8123:8123 # optional if host network is used
#devices:
# - /path/to/device:/path/to/device #optional
deploy:
resources:
limits:
cpus: '0.5'
memory: 500M