diff --git a/homarr/docker-compose.yml b/homarr/docker-compose.yml new file mode 100644 index 0000000..325e6a5 --- /dev/null +++ b/homarr/docker-compose.yml @@ -0,0 +1,13 @@ +version: '3' +services: + homarr: + container_name: homarr + image: ghcr.io/ajnart/homarr:latest + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + - ./configs:/app/data/configs + - ./icons:/app/public/icons + - ./data:/data + ports: + - '7575:7575' diff --git a/homeassistant/docker-compose.yml b/homeassistant/docker-compose.yml new file mode 100644 index 0000000..27a7617 --- /dev/null +++ b/homeassistant/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3' +services: + homeassistant: + container_name: homeassistant + image: "homeassistant/home-assistant:latest" + volumes: + - ./data:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro # Bluetooth + #devices: # Optional if you use a zigbee communicator + # - /dev/ttyUSB0 + restart: unless-stopped + privileged: true + network_mode: host diff --git a/wallos/docker-compose.yml b/wallos/docker-compose.yml new file mode 100644 index 0000000..ebdd12e --- /dev/null +++ b/wallos/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3.0' + +services: + wallos: + container_name: wallos + image: bellamy/wallos:main + ports: + - "4444:80/tcp" + environment: + TZ: 'Europe/Zurich' + volumes: + - './db:/var/www/html/db' + - './logos:/var/www/html/images/uploads/logos' + restart: unless-stopped