-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
42 lines (41 loc) · 925 Bytes
/
compose.yaml
File metadata and controls
42 lines (41 loc) · 925 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
35
36
37
38
39
40
41
42
services:
haystack:
image: ghcr.io/bernikr/ownhaystack:0.1.3
depends_on:
- mqtt
- anisette
- owntracks
volumes:
- ./data:/data
environment:
- APPLE_USERNAME=${APPLE_USERNAME}
- APPLE_PASSWORD=${APPLE_PASSWORD}
- MQTT_SERVER=mqtt
- ANISETTE_URL=http://anisette:6969
mqtt:
image: eclipse-mosquitto:2.0
configs:
- source: mosquitto.conf
target: /mosquitto/config/mosquitto.conf
anisette:
image: dadoum/anisette-v3-server:latest
volumes:
- ./data/anisette:/home/Alcoholic/.config/anisette-v3/
user: '0:0'
ports:
- "6969:6969"
owntracks:
image: owntracks/recorder:0.9.9
depends_on:
- mqtt
volumes:
- ./data/owntracks:/store
environment:
- OTR_HOST=mqtt
ports:
- "8083:8083"
configs:
mosquitto.conf:
content: |
allow_anonymous true
listener 1883