-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 873 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (34 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: ecowitt-dev
services:
mosquitto-dev:
container_name: mosquitto-dev
restart: unless-stopped
image: docker.io/library/eclipse-mosquitto:latest
ports:
- 1883:1883
- 8883:8883
- 9001:9001
volumes:
- type: bind
source: /home/marc/docker/config/mosquitto
target: /mosquitto/
homeassistant-dev:
container_name: homeassistant-dev
restart: unless-stopped
image: "ghcr.io/home-assistant/home-assistant:stable"
depends_on:
- mosquitto-dev
ports:
- 8123:8123
volumes:
- type: bind
source: /home/marc/docker/config/homeassistant
target: /config
- type: bind
source: /etc/localtime
target: /etc/localtime
read_only: true
# - type: bind
# source: /run/dbus
# target: /run/dbus
# read_only: true