Skip to content

Commit

Permalink
update should just work now
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Oct 5, 2023
1 parent 1f332b2 commit ed083fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/scalability/prepare-ec2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p /cht
chmod 777 /cht;

# Install Docker CE
apt-get update --allow-insecure-repositories
apt-get update
apt-get install -y \
apt-transport-https \
ca-certificates \
Expand All @@ -18,16 +18,16 @@ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update --allow-insecure-repositories
apt-get install -y docker-ce docker-ce-cli containerd.io --allow-insecure-repositories
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io

# Install docker-compose
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" \
-o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

mkdir /cht/upgrade-service
mkdir /cht/compose
mkdir -p /cht/upgrade-service
mkdir -p /cht/compose

curl -s https://raw.githubusercontent.com/medic/cht-upgrade-service/main/docker-compose.yml \
-o /cht/upgrade-service/docker-compose.yml
Expand Down

0 comments on commit ed083fe

Please sign in to comment.