-
Notifications
You must be signed in to change notification settings - Fork 111
Description
nodejs-poolController Version/commit
8.0.1
nodejs-poolController-dashPanel Version/commit
No response
relayEquipmentManager Version/commit
No response
Node Version
No response
Platform
No response
RS485 Adapter
No response
Are you using Docker?
- Yes.
OCP
No response
Pump(s)
No response
Chlorinator(s)
No response
What steps will reproduce the bug?
Update 7.6.1 docker image with 8.0.1, run it.
What happens?
Docker comtainer continually stops/restarts.
What should have happened?
Docker container should run.
Additional information
I have been running 7.6.1 for a long time with no issues on a rpi with USB RS485 dongle.
Tried 8.0.1 today, and I can not get the docker image to run at all. All I see in the docker logs is:
Init state for Pool Controller
[4/12/2023, 1:40:39 PM] info: The current git branch output is
[4/12/2023, 1:40:39 PM] info: The current git commit output is 35be048
[4/12/2023, 1:40:39 PM] info: Starting up SSDP server
Init state for Pool Controller
[4/12/2023, 1:40:43 PM] info: The current git branch output is
[4/12/2023, 1:40:43 PM] info: The current git commit output is 35be048
[4/12/2023, 1:40:43 PM] info: Starting up SSDP server
Init state for Pool Controller
[4/12/2023, 1:40:47 PM] info: The current git branch output is
[4/12/2023, 1:40:47 PM] info: The current git commit output is 35be048
[4/12/2023, 1:40:47 PM] info: Starting up SSDP server
Init state for Pool Controller
[4/12/2023, 1:40:51 PM] info: The current git branch output is
[4/12/2023, 1:40:51 PM] info: The current git commit output is 35be048
[4/12/2023, 1:40:51 PM] info: Starting up SSDP server
Init state for Pool Controller
[4/12/2023, 1:40:55 PM] info: The current git branch output is
[4/12/2023, 1:40:55 PM] info: The current git commit output is 35be048
[4/12/2023, 1:40:55 PM] info: Starting up SSDP server
And the container continually restarts. Not sure what other logs/info to look at to see what is happening?
Going back to the 7.6.1 image worked fine, so it isn't a huge issue or anything for me.
Docker compose file:
services:
poolcontroller:
container_name: poolcontroller
restart: always
environment:
- TZ=America/Chicago
group_add:
- dialout
devices:
- /dev/ttyUSB0
ports:
- "4200:4200"
volumes:
- /home/jason/poolcontroller/config.json:/app/config.json
- /home/jason/poolcontroller/data:/app/data
image: msmi/nodejs-poolcontroller:7.6.1
poolcontroller-dashpanel:
restart: always
container_name: poolcontroller-dashpanel
environment:
- TZ=America/Chicago
ports:
- "5150:5150"
volumes:
- /home/jason/poolcontroller-dashpanel/config.json:/app/config.json
image: msmi/nodejs-poolcontroller-dashpanel
depends_on:
- poolcontroller
Simply changing " image: msmi/nodejs-poolcontroller:7.6.1" to " image: msmi/nodejs-poolcontroller" or " image: msmi/nodejs-poolcontroller:latest" will cause the container to continually restart.