mirror of
https://github.com/michivonah/docker.git
synced 2025-12-22 20:36:27 +01:00
add more docker-compose files
This commit is contained in:
parent
c8dd8c3ba7
commit
f8e1b48199
3 changed files with 41 additions and 0 deletions
13
homarr/docker-compose.yml
Normal file
13
homarr/docker-compose.yml
Normal 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'
|
||||
14
homeassistant/docker-compose.yml
Normal file
14
homeassistant/docker-compose.yml
Normal 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
14
wallos/docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue