Hi,I am new to OpenEMS and wanted to deploy the edge and the ui both as docker containers on my raspberry pi. I used the following docker compose file:
services:
openems-edge:
image: openems/edge:latest
container_name: openems_edge
hostname: openems_edge
restart: unless-stopped
volumes:
- openems-edge-conf:/var/opt/openems/config:rw
- openems-edge-data:/var/opt/openems/data:rw
ports:
- 8080:8080 # Apache-Felix
- 8085:8085 # UI-Websocket
openems-ui:
image: openems/ui-edge:latest
container_name: openems_ui
hostname: openems_ui
restart: unless-stopped
volumes:
- openems-ui-conf:/etc/nginx:rw
- openems-ui-log:/var/log/nginx:rw
ports:
- 8082:80
- 444:443
volumes:
openems-edge-conf:
openems-edge-data:
openems-ui-conf:
openems-ui-log:
The UI is working but it can not access the edge. I also cant access apache-felix under port 8080. This is displayed in the browser:
Does anyone as an idea how I can get this working?
