Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker-compose install command. #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update docker-compose install command.
The earlier command  "sudo apt-get install docker-compose"  installs older version of docker compose which creates runtime error.
The new command installs the latest version which is compatible with the current version.
  • Loading branch information
Saddy21 committed Jan 11, 2023
commit 93a020547eefe96f6054db3f97f4eafb240701fb
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,19 @@ Alternatively, simply perform the following steps:
* Install docker-compose

```sh
sudo apt-get install docker-compose
To download and install Compose standalone, run:

curl -SL https://github.com/docker/compose/releases/download/v2.15.1/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose

Apply executable permissions to the standalone binary in the target path for the installation.
Test and execute compose commands using docker-compose.

Note

If the command docker-compose fails after installation, check your path. You can also create a symbolic link to /usr/bin or any other directory in your path. For example:

sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

```
* Pull carla image and run

Expand Down