Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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

centos 7 install docker compose

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

Install Docker Compose on CentOS

#Copy the appropriate docker-compose binary from GitHub
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose

#NOTE: to get the latest version sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose


#Fix permissions after download
sudo chmod +x /usr/local/bin/docker-compose

#Verify success
docker-compose version
Comment

PREVIOUS NEXT
Code Example
Shell :: what is the use of bashrc file in linux 
Shell :: set sublime text as git editor mac 
Shell :: enter passphrase is asking for password 
Shell :: create windows network share from command line 
Shell :: kill process on mac 
Shell :: zip exclude multiple files linux 
Shell :: delete a pushed commit 
Shell :: bash increment variable in while loop 
Shell :: go back to previous commit 
Shell :: venv git 
Shell :: mongodb install issues 
Shell :: download sklearn linux 
Shell :: failed to open stream: No space left on device linode 
Shell :: realtek 
Shell :: viewing ubuntu desktop from windows in the same network 
Shell :: screen recorder mint 
Shell :: docker no space left on device ubuntu but only 75% use? 
Shell :: git shell 
Shell :: vmware not working after ubuntu upgrade 
Shell :: maven homebrew 
Shell :: sudo rename command 
Shell :: copy terminal settings ubuntu 
Shell :: git rename older local commit 
Shell :: bash concatenate string variables 
Shell :: rpm uninstall package 
Shell :: vue import yaml 
Shell :: have all changes from a local branch to a new local branch git 
Shell :: copying folders in git bash 
Shell :: chmod user to root 
Shell :: bash read file 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =