What logs? Where I can find the logs?
Also, how is it possible that I run different versions?
wget https://dist.ipfs.io/ipfs-cluster-ctl/v0.14.0/ipfs-cluster-ctl_v0.14.0_linux-amd64.tar.gz
tar xvzf ipfs-cluster-ctl_v0.14.0_linux-amd64.tar.gz
# I'm guessing this is the cli 0.14.0 version
# the docker-compose.yml just states
image: ipfs/go-ipfs:latest
# how do I get access to the logs?
# how do I see version that docker compose is starting?
a version of ipfs-cluster-ctl should be paired with the proper version of ipfs-cluster. you have shared your ipfs version and ipfs-cluster-ctl version, but not your ipfs-cluster version.
The short answer is, if you are new to ipfs dont use cluster. manage a few nodes by hand until you know what to expect (and know where your logs are )
# diding throo the logs I found this:
ipfs-cluster-service version 1.0.0-rc3+gita2b89f9b3b384c697923b957183016b465bc200d
# so I downloaded this by adjusting your command
wget https://dist.ipfs.io/ipfs-cluster-ctl/v1.0.0-rc3/ipfs-cluster-ctl_v1.0.0-rc3_linux-amd64.tar.gz
mkdir mkdir ipfs-cluster-ctl2
tar xvzf ipfs-cluster-ctl_v1.0.0-rc3_linux-amd64.tar.gz --directory ./ipfs-cluster-ctl2/
cd ipfs-cluster-ctl2/ipfs-cluster-ctl/
cp ../../ipfs-cluster-ctl/docker-compose.yml ./
docker compose up > my-logs.log
# on different terminal
./ipfs-cluster-ctl peers ls
12D3KooWQRBFXCDEsv1mFqUyzBnXiXwBs48E66pFfzr36zib1G4L | cluster0 | Sees 2 other peers
> Addresses:
- /ip4/127.0.0.1/tcp/9096/p2p/12D3KooWQRBFXCDEsv1mFqUyzBnXiXwBs48E66pFfzr36zib1G4L
- /ip4/172.21.0.5/tcp/9096/p2p/12D3KooWQRBFXCDEsv1mFqUyzBnXiXwBs48E66pFfzr36zib1G4L
> IPFS: 12D3KooWRnC96ddCjhzrQQgeFNf3zA7pg6NhsBr9g1q55H6HZjCX
- /ip4/127.0.0.1/tcp/4001/p2p/12D3KooWRnC96ddCjhzrQQgeFNf3zA7pg6NhsBr9g1q55H6HZjCX
# and so on and so on ........
Digging through the logs I found this ipfs-cluster-service version 1.0.0-rc3+gita2b89f9b3b384c697923b957183016b465bc200d
adjusting your url this is what I did:
wget https://dist.ipfs.io/ipfs-cluster-ctl/v1.0.0-rc3/ipfs-cluster-ctl_v1.0.0-rc3_linux-amd64.tar.gz
# then unpack and docker compose up then.. (ass per instructions from my linked question)
./ipfs-cluster-ctl peers ls