| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- version: '2'
- services:
- fhem:
- expose:
- - "8083"
- - "7072"
- ports:
- - "8083:8083"
- - "7072:7072"
- build: fhem
- privileged: true
- devices:
- - "/dev/ttyUSB0:/dev/ttyUSB0"
- volumes:
- - ./fhem/log/:/opt/fhem/log
- - ./fhem/fhem.cfg:/opt/fhem/fhem.cfg
- - ./fhem/FHEM/99_myUtils.pm:/opt/fhem/FHEM/99_myUtils.pm
- - ./fhem/contrib/dblog/db.conf:/opt/fhem/contrib/dblog/db.conf
- networks:
- - code-network
- depends_on:
- - "mysql"
- homebridge:
- expose:
- - "51826"
- - "8282"
- ports:
- - "51826:51826"
- - "8282:8282"
- build: homebridge
- volumes:
- - ./homebridge/config.json:/root/.homebridge/config.json
- networks:
- - code-network
- depends_on:
- - "fhem"
- mysql:
- expose:
- - "3306"
- - "33060"
- ports:
- - "3306:3306"
- - "33060:33060"
- image: mysql/mysql-server:5.7
- volumes:
- - ./mysql/init.sql:/docker-entrypoint-initdb.d/fhem-init.sql
- - ./mysql/data:/var/lib/mysql
- environment:
- - MYSQL_ROOT_PASSWORD=adgbciBOZjwYXeATg
- networks:
- - code-network
- networks:
- code-network:
- driver: bridge
|