22 lines
555 B
YAML
Raw Normal View History

2023-02-15 22:45:31 +01:00
services:
2023-02-15 22:45:31 +01:00
homeassistant:
image: linuxserver/homeassistant:latest
container_name: homeassistant
network_mode: host
restart: unless-stopped
2023-02-15 22:45:31 +01:00
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homeassistant/config:/config
2023-02-15 22:45:31 +01:00
#ports:
2025-02-11 09:21:42 +01:00
# - 8123:8123 # optional if host network is used
2023-02-15 22:45:31 +01:00
#devices:
2025-02-11 09:21:42 +01:00
# - /path/to/device:/path/to/device #optional
deploy:
resources:
limits:
cpus: '0.5'
memory: 500M