mirror of
https://github.com/paradizelost/docker.git
synced 2024-11-25 02:44:45 -06:00
17 lines
445 B
YAML
17 lines
445 B
YAML
version: '3'
|
|
services:
|
|
homeassistant:
|
|
container_name: home-assistant
|
|
image: homeassistant/home-assistant
|
|
logging:
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
volumes:
|
|
- ./data:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
restart: always
|
|
ports:
|
|
- 8123:8123
|
|
command: bash -c "sed -i -E \"s/_TLSv1/_TLS/g\" `find / -name roomba.py -print` && python3 -m homeassistant --config /config"
|