Please Help Me : to Install and Run the syson Project #745
Replies: 6 comments
-
Hello, It seems you use podman instead of docker. We never tested installation through podman. Regards, |
Beta Was this translation helpful? Give feedback.
-
Hi, AxelRICHARD:
I don't know the reason why can NOT docker compose up the docker-compose.yml file. So,
Please help me to tell me how to install and run the Syson . Thank you so much. |
Beta Was this translation helpful? Give feedback.
-
I'm sorry but I don't know why you have errors with docker on linux. After a simple quick research, I found this: https://stackoverflow.com/questions/46550348/docker-stack-deploy-error-about-top-level-object-mappings So I suggest to change double quotes for simple quotes in the docker-compose.yml file. For the 5th problem, it seems you are accessing SysON from another machine than the one running the SysON application. |
Beta Was this translation helpful? Give feedback.
-
Hi, AxelRICHARD,
Thank you very much. |
Beta Was this translation helpful? Give feedback.
-
There is no build page yet in the documentation, no architecture document too. We will try to update the documentation as soon as we have the time to do it. But if you look at https://github.com/eclipse-syson/syson/blob/main/.github/workflows/build.yml from line 71 to line 87 you should be able to build SysON by yourself. Regards, |
Beta Was this translation helpful? Give feedback.
-
If it helps, I run SysON on rootless podman (startup code at https://gitlab.com/itafraze/podman-rootless-pod-syson). For development purposes, I guess you could replace the SysOn image with your own. Check how it is built on GitHub as starting point, as @AxelRICHARD said. Consider also #303 |
Beta Was this translation helpful? Give feedback.
-
The README ( https://github.com/eclipse-syson/syson/blob/main/README.md ) has no installation and running.
And I do installation following the instructions of the doc ( https://doc.mbse-syson.org/syson/main/installation-guide/how-tos/install.html ) . However It's failed to do that ( both with Docker Compose and Manually ). The errors occur as following:
(1) when doing the command:
docker compose up
after downloaded the docker-compose file, the errors message :Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
>>>> Executing external compose provider "/usr/local/bin/docker-compose". Please refer to the documentation for details. <<<<
(2) when doing the command:
docker run -p 5434:5432 --name syson-postgres \ -e POSTGRES_USER=dbuser \ -e POSTGRES_PASSWORD=dbpwd \ -e POSTGRES_DB=syson-db \ -d postgres
the errors message :
Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
✔ docker.io/library/postgres:latest
Trying to pull docker.io/library/postgres:latest...
WARN[0096] Failed, retrying in 1s ... (1/3). Error: copying system image from manifest list: parsing image configuration: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/07/07a4ee949b9e7851d9ef860fd36f486aa821f23e1c17939244155fe825eaf79a/data?verify=1722955834-U6i8PDhTlPz4YTmjjYP5Ow%2FOxsQ%3D": dial tcp 128.121.243.76:443: i/o timeout
WARN[0129] Failed, retrying in 1s ... (2/3). Error: copying system image from manifest list: parsing image configuration: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/07/07a4ee949b9e7851d9ef860fd36f486aa821f23e1c17939244155fe825eaf79a/data?verify=1722955868-NcTxtIi2BGMXpQLUOVm1dT8isH8%3D": dial tcp 128.121.243.76:443: i/o timeout
WARN[0164] Failed, retrying in 1s ... (3/3). Error: copying system image from manifest list: parsing image configuration: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/07/07a4ee949b9e7851d9ef860fd36f486aa821f23e1c17939244155fe825eaf79a/data?verify=1722955902-w%2F5F451c9%2BOcJ7pWiqSBBjtxOpI%3D": dial tcp 128.121.243.76:443: i/o timeout
Error: copying system image from manifest list: parsing image configuration: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/07/07a4ee949b9e7851d9ef860fd36f486aa821f23e1c17939244155fe825eaf79a/data?verify=1722955937-ZILty0YeNkqb9Z%2BOE94WqL4h1Nc%3D": dial tcp 128.121.243.76:443: i/o timeout
As a result, it's for me that the docker-compose.yml file can NOT be dockered compose and the docker.io/library/postgres:latest can NOT be pulled.
So, I don't know how to install syson and run it following the instructions of the doc.
Please help me to tell me how to install and run the syson.
Thank you very much.
Beta Was this translation helpful? Give feedback.
All reactions