forked from holoarts/fhem-signal-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (41 loc) · 947 Bytes
/
docker-compose.yml
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
43
44
45
46
47
48
# This is an exmaple Docker Compose file to start your own Docker Stack
version: '2.3'
services:
fhem:
hostname: fhemsignal
container_name: fhem_signal
# image: fhem/fhem:bullseye
build: .
restart: always
tty: true
stdin_open: true
networks:
- fhem-network
ports:
- "8083:8083"
- "7072:7072"
volumes:
- "./fhem/:/opt/fhem/"
- "./signal/:/var/lib/signal-cli/"
# devices:
# - "/dev/ttyUSB0:/dev/ttyUSB0"
environment:
FHEM_UID: 1000
FHEM_GID: 1000
FHEMUSER: fhem
FHEMGROUP: fhem
TIMEOUT: 10
RESTART: 1
TELNETPORT: 7072
TZ: Europe/Berlin
networks:
fhem-network:
driver: bridge
# enable_ipv6: true
# ipam:
# driver: default
# config:
# - subnet: 172.27.0.0/24
# gateway: 172.27.0.1
# # - subnet: fd00:0:0:0:27::/80
# # gateway: fd00:0:0:0:27::1