AWS Cloud 9
Setting Up Cloud 9 Server using Amazon Linux
When creating your instance if you see this error:
The following resource(s) failed to create: [Instance]
It’s because you have a legacy account. Setting up a new server now requires you to explicitly pick a subnet in the advanced settings.
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
$ eval "$(ssh-agent -s)"
$ ssh-add ~/.ssh/id_rsa
$ cat ~/.ssh/id_rsa.pub
Copy output to Github or Bitbucket where you're pushing and pulling your code from.
Instructions for installing docker compose https://docs.docker.com/compose/install/#install-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
$ sudo chmod +x /usr/local/bin/docker-compose
Check space usage:
$ df -h
Follow these instructions: https://docs.aws.amazon.com/cloud9/latest/user-guide/move-environment.html#move-environment-resize
Last modified 1yr ago