Have you read a contributing guide?
Current Behavior
When starting a fresh install with default settings by "make start" the container "any-sync-consensusnode" is not coming up and restarting continuously. The container logs show an error:
/bin/sh: 1: [/bin/any-sync-consensusnode,: not found
This indicates a syntax error in the container:
"Cmd": [
"/bin/sh",
"-c",
"[/bin/any-sync-consensusnode, -c, /etc/any-sync-consensusnode/config.yml]"
],
Expected Behavior
The container should start normally without error.
This can be enforced by overwriting the command in the docker.compose file by adding this code:
entrypoint: ["/bin/any-sync-consensusnode"]
command:
- -c
- /etc/any-sync-consensusnode/config.yml
Steps To Reproduce
Under OpenSUSE Tumbleweed with Docker and Almalinux 10 with Docker
mkdir /var/opt/any-sync-dockercompose
cd /var/opt/any-sync-dockercompose
git clone https://github.com/anyproto/any-sync-dockercompose.git
make start
Environment
- OS: openSUSE and Almalinux
- Version: Tumbleweed / 10
- any-sync-consensusnode:v0.6.8 (prod)
Anything else?
No response
Have you read a contributing guide?
Current Behavior
When starting a fresh install with default settings by "make start" the container "any-sync-consensusnode" is not coming up and restarting continuously. The container logs show an error:
/bin/sh: 1: [/bin/any-sync-consensusnode,: not foundThis indicates a syntax error in the container:
"Cmd": ["/bin/sh","-c","[/bin/any-sync-consensusnode, -c, /etc/any-sync-consensusnode/config.yml]"],Expected Behavior
The container should start normally without error.
This can be enforced by overwriting the command in the docker.compose file by adding this code:
entrypoint: ["/bin/any-sync-consensusnode"]command:- -c- /etc/any-sync-consensusnode/config.ymlSteps To Reproduce
Under OpenSUSE Tumbleweed with Docker and Almalinux 10 with Docker
mkdir /var/opt/any-sync-dockercompose
cd /var/opt/any-sync-dockercompose
git clone https://github.com/anyproto/any-sync-dockercompose.git
make start
Environment
Anything else?
No response