Open port for MobileAlert in fhem.
Added OpenHub docker compose file.
This commit is contained in:
25
fhem/docker-compose.yml
Normal file
25
fhem/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
fhem_opt:
|
||||||
|
|
||||||
|
services:
|
||||||
|
fhem:
|
||||||
|
image: fhem/fhem:latest
|
||||||
|
container_name: fhem
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "8083:8083"
|
||||||
|
- "7072:7072"
|
||||||
|
- "8090:8090"
|
||||||
|
volumes:
|
||||||
|
- fhem_opt:/opt/fhem/
|
||||||
|
environment:
|
||||||
|
TELNETPORT: 7072
|
||||||
|
TZ: Europe/Berlin
|
||||||
|
networks:
|
||||||
|
- nginx_network
|
||||||
|
|
||||||
|
networks:
|
||||||
|
nginx_network:
|
||||||
|
driver: bridge
|
||||||
30
openhub/docker-compose.yml
Normal file
30
openhub/docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
openhab_addons:
|
||||||
|
openhab_conf:
|
||||||
|
openhab_userdata:
|
||||||
|
|
||||||
|
|
||||||
|
services:
|
||||||
|
openhab:
|
||||||
|
image: "openhab/openhab:3.0.1"
|
||||||
|
container_name: openhub
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "88:8080"
|
||||||
|
- "8443:8443"
|
||||||
|
volumes:
|
||||||
|
- openhab_addons:/openhab/addons
|
||||||
|
- openhab_conf:/openhab/conf
|
||||||
|
- openhab_userdata:/openhab/userdata
|
||||||
|
environment:
|
||||||
|
OPENHAB_HTTP_PORT: "8080"
|
||||||
|
OPENHAB_HTTPS_PORT: "8443"
|
||||||
|
EXTRA_JAVA_OPTS: "-Duser.timezone=Europe/Berlin"
|
||||||
|
networks:
|
||||||
|
- nginx_network
|
||||||
|
|
||||||
|
networks:
|
||||||
|
nginx_network:
|
||||||
|
driver: bridge
|
||||||
Reference in New Issue
Block a user