Coder Social home page Coder Social logo

Docker installation failed about openreplay HOT 3 OPEN

PIXPOINT avatar PIXPOINT commented on May 28, 2024 1
Docker installation failed

from openreplay.

Comments (3)

estradino avatar estradino commented on May 28, 2024

It doesn't work on ARM. Please try on an x64 machine.

from openreplay.

PIXPOINT avatar PIXPOINT commented on May 28, 2024

And does the instructions work with “Deploy to Ubuntu” on arm or not?

https://docs.openreplay.com/en/deployment/deploy-ubuntu/

from openreplay.

KxStefan avatar KxStefan commented on May 28, 2024

@estradino Had the same error on x64. Found out that apparently the command "--parallel" in docker-compose V1 is causing problems.

Fix was to adjust the openreplay/scripts/docker-compose/install.sh from:

if command -v docker-compose >/dev/null 2>&1; then
	# Docker Compose V1 is installed.
	sudo -E docker-compose --parallel 1 pull
	sudo -E docker-compose --profile migration up --force-recreate --build -d
else
	# Docker Compose V2 or higher is installed.
	sudo -E docker compose --parallel 1 pull
	sudo -E docker compose --profile migration up --force-recreate --build -d
fi

to only V2:

sudo -E docker compose --parallel 1 pull
sudo -E docker compose --profile migration up --force-recreate --build -d

Already had V2 running, but the check doesn't seem to work properly and command is not working on V1.

# docker-compose --parallel 1 pull
unknown flag: --parallel
# docker compose --parallel 1 pull
[+] Pulling 21/1
...

from openreplay.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.