You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
617 B
31 lines
617 B
---
|
|
version: "3"
|
|
|
|
services:
|
|
homeassistant_instance:
|
|
image: homeassistant/home-assistant:2021.2.3
|
|
container_name: homeassistant_instance
|
|
hostname: homeassistant_instance
|
|
restart: always
|
|
depends_on:
|
|
- homeassistant_db
|
|
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ./etc/config:/config
|
|
|
|
ports:
|
|
- "8123:8123"
|
|
homeassistant_db:
|
|
image: mariadb:10.5
|
|
container_name: homeassistant_db
|
|
|
|
hostname: homeassistant_db
|
|
restart: unless-stopped
|
|
|
|
env_file:
|
|
- ./.env-homeassistant_db
|
|
|
|
volumes:
|
|
- ./etc/homeassistant_db/data:/var/lib/mysql
|
|
...
|