2023-09-13 00:28:48 +08:00
|
|
|
version: '3'
|
|
|
|
services:
|
2023-09-13 01:39:32 +08:00
|
|
|
homea:
|
2023-09-13 00:28:48 +08:00
|
|
|
# command: command
|
2023-09-13 01:39:32 +08:00
|
|
|
container_name: ha
|
|
|
|
image: homeassistant/home-assistant:latest
|
2023-09-13 00:28:48 +08:00
|
|
|
restart: always
|
|
|
|
ports:
|
2023-09-13 01:39:32 +08:00
|
|
|
- 8123:8123
|
2023-09-13 00:28:48 +08:00
|
|
|
networks:
|
|
|
|
- local
|
|
|
|
volumes:
|
2023-09-13 01:39:32 +08:00
|
|
|
- ${DIR}/ha/config:/config
|
2023-09-13 00:28:48 +08:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2023-09-13 01:39:32 +08:00
|
|
|
privileged: true
|
2023-09-13 00:28:48 +08:00
|
|
|
environment:
|
2023-09-13 01:39:32 +08:00
|
|
|
TZ:
|
2023-09-13 00:28:48 +08:00
|
|
|
networks:
|
|
|
|
local:
|
|
|
|
name: local
|
|
|
|
external: true
|
|
|
|
|
|
|
|
|