Renamed all docker-compose files to podman-compose
Just because I can
This commit is contained in:
parent
d546922e1e
commit
a55c7b1f99
19 changed files with 18 additions and 2 deletions
|
@ -1,56 +0,0 @@
|
|||
[services.home-assistant]
|
||||
container_name = "home-assistant"
|
||||
image = "homeassistant/home-assistant"
|
||||
environment = ["TZ=Europe/Helsinki"]
|
||||
devices = ["/dev/ttyACM0"]
|
||||
volumes = [
|
||||
"~/data/homeautomation/home-assistant:/config",
|
||||
"/etc/localtime:/etc/localtime:ro",
|
||||
]
|
||||
restart = "unless-stopped"
|
||||
networks = ["homeautomation", "postgres", "proxy"]
|
||||
ports = ["8123:8123", "8300:8300"]
|
||||
extra_hosts = ["host.docker.internal:host-gateway"]
|
||||
depends_on = ["mosquitto"]
|
||||
|
||||
[services.esphome]
|
||||
container_name = "esphome"
|
||||
image = "esphome/esphome"
|
||||
volumes = ["~/data/homeautomation/esphome:/config"]
|
||||
restart = "unless-stopped"
|
||||
network_mode = "host"
|
||||
|
||||
[services.mosquitto]
|
||||
container_name = "mosquitto"
|
||||
image = "eclipse-mosquitto"
|
||||
environment = ["TZ=Europe/Helsinki"]
|
||||
ports = ["1883:1883"]
|
||||
networks = ["homeautomation"]
|
||||
volumes = [
|
||||
"~/data/homeautomation/mosquitto:/mosquitto",
|
||||
"/etc/localtime:/etc/localtime:ro",
|
||||
]
|
||||
restart = "unless-stopped"
|
||||
|
||||
[services.rhasspy]
|
||||
container_name = "rhasspy"
|
||||
image = "rhasspy/rhasspy"
|
||||
command = "--profile en --user-profiles /profiles"
|
||||
volumes = ["~/data/homeautomation/rhasspy:/profiles"]
|
||||
environment = ["TZ=Europe/Helsinki"]
|
||||
ports = ["12101:12101"]
|
||||
networks = ["homeautomation"]
|
||||
restart = "unless-stopped"
|
||||
depends_on = ["home-assistant"]
|
||||
devices = ["/dev/snd:/dev/snd"]
|
||||
|
||||
[networks]
|
||||
|
||||
[networks.homeautomation]
|
||||
external = false
|
||||
|
||||
[networks.postgres]
|
||||
external = true
|
||||
|
||||
[networks.proxy]
|
||||
external = true
|
Reference in a new issue