Fix homeassistant config check with overlay-s6 (#1532)

This commit is contained in:
Pascal Vizeli 2020-02-27 13:29:42 +01:00 committed by GitHub
parent 374bcf8073
commit 398b24e0ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ class DockerHomeAssistant(DockerInterface):
hostname=self.name,
detach=True,
privileged=True,
init=True,
init=False,
network_mode="host",
environment={
"HASSIO": self.sys_docker.network.supervisor,
@ -101,6 +101,7 @@ class DockerHomeAssistant(DockerInterface):
command=command,
privileged=True,
init=True,
entrypoint=[],
detach=True,
stdout=True,
stderr=True,