mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
14 lines
305 B
YAML
14 lines
305 B
YAML
version: '3.5'
|
|
name: homeassistant
|
|
services:
|
|
homeassistant:
|
|
container_name: homeassistant
|
|
restart: unless-stopped
|
|
image: ghcr.io/home-assistant/home-assistant:stable
|
|
ports:
|
|
- "8123:8123"
|
|
environment:
|
|
- TZ=Europe/Vienna
|
|
volumes:
|
|
- ./homeassistant_config:/config
|