SCADA-LTS / Scada-LTS

Scada-LTS is an Open Source, web-based, multi-platform solution for building your own SCADA (Supervisory Control and Data Acquisition) system.
GNU General Public License v2.0
734 stars 292 forks source link

docker stability issues #2604

Closed 2426852837 closed 1 year ago

2426852837 commented 1 year ago

My computer is Win11 and SCADALTS starts normally after executing the docker-compose up command using the files provided by dockerhub. But I go to localhost:9090 and the interface keeps loading without any interface or prompt. It regularly returns localhost without sending any data. I would like to ask if this is because the docker version you provide is not stable enough?

2426852837 commented 1 year ago

version: '3' services: database: container_name: mysql image: mysql/mysql-server:5.7 ports:

Limraj commented 1 year ago

Hi @2426852837,

  1. Questions are best asked here: https://github.com/SCADA-LTS/Scada-LTS/discussions You need to close this issue and add the question in the discussions;
  2. Here is the current configuration file: https://github.com/SCADA-LTS/Scada-LTS/blob/develop/docker-compose.yml
  3. If you see any error anything, send a screenshot.
  4. First you need to start the database: docker-compose up database When the database starts then: docker-compose up scadalts docker-compose-tutorial
  5. Make sure port 9090 is free, during startup you also have docker logs: https://docs.docker.com/config/daemon/logs/

Regards, Kamil Jarmusik