Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

ec2_setup.sh 293 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  1. #!bin/bash
  2. sudo apt update
  3. sudo apt-get update
  4. sudo apt upgrade -y
  5. curl -fsSL https://get.docker.com -o get-docker.sh
  6. sudo sh get-docker.sh
  7. sudo usermod -aG docker $USER
  8. newgrp docker
  9. sudo apt install awscli -y
  10. ## AWS configuration
  11. aws configure
  12. ## Now setup elastic IP on AWS
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...