add more docker-compose files

This commit is contained in:
Michi 2024-05-03 22:01:12 +02:00
parent c8dd8c3ba7
commit f8e1b48199
3 changed files with 41 additions and 0 deletions

13
homarr/docker-compose.yml Normal file
View file

@ -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'

View file

@ -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

14
wallos/docker-compose.yml Normal file
View file

@ -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