Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker-compose install centos 8

# download
sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

# creare simlink
sudo chmod +x /usr/local/bin/docker-compose

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

# done
docker-compose -v
Comment

docker-compose install in centos 7

sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
Comment

install docker-compose in centos 8

sudo curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose

sudo chmod +x /usr/local/bin/docker-compose

# After you do the curl command , it'll put docker-compose into the /usr/local/bin

#which is not on the PATH. To fix it, create a symbolic link:

sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
#And now if you do: docker-compose --version

#You'll see that docker-compose is now on the PATH
Comment

docker compose install centos 8

curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
Comment

PREVIOUS NEXT
Code Example
Shell :: command not found: lvim 
Shell :: stop all docker images 
Shell :: how to git commit without message 
Shell :: is not digitally signed. you cannot run this script on the current system 
Shell :: conda update existing environment from yml 
Shell :: run requirements.txt conda 
Shell :: yarn install ignore node version 
Shell :: install portainer 
Shell :: command ng not found 
Shell :: MaatwebsiteExcelExcel not found 
Shell :: uninstall webpack globally 
Shell :: error cannot refresh snap-store snap snap-store has running apps (ubuntu-software) 
Shell :: how to unistall and reinstall latest composer in mac 
Shell :: hello world powershell 
Shell :: remove git from folder 
Shell :: find empty files linux 
Shell :: git config setting 
Shell :: revert local commit git bash 
Shell :: create react app typescript tailwind template 
Shell :: git delete local branches not on remote 
Shell :: pip reinstall 
Shell :: firebase with react 
Shell :: cannot find jsonwebtoken 
Shell :: rman delete old archivelog 
Shell :: git submodule get all 
Shell :: remove iptables rule 
Shell :: lightgbm install 
Shell :: add credentials to git 
Shell :: bash: npm: command not found 
Shell :: bash get width of terminal 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =