Skip to content

Instantly share code, notes, and snippets.

@rafjsouza
Last active March 18, 2022 11:09
Show Gist options
  • Save rafjsouza/02239d7a1bfa1dfae36bb236a02c2499 to your computer and use it in GitHub Desktop.
Save rafjsouza/02239d7a1bfa1dfae36bb236a02c2499 to your computer and use it in GitHub Desktop.
Configuring docker on Amazon EC2 Linux

******* Amazon EC2 --utilitarios
sudo yum upgrade -y \
&& sudo yum upgrade -y \
&& sudo yum install \
htop \
mc \
wget \
curl \
ca-certificates \
-y

--install ctop
sudo wget https://github.com/bcicen/ctop/releases/download/v0.7.1/ctop-0.7.1-linux-amd64 -O /usr/local/bin/ctop \
&& sudo chmod +x /usr/local/bin/ctop

--docker
sudo yum update -y \
&& sudo amazon-linux-extras install docker -y \
&& sudo systemctl enable docker \
&& sudo gpasswd -a ec2-user docker \
&& sudo service docker start

--configurando regras de network
-Criar um security group e adicionar as regras abaixo

Inbound Rules
image

Outbound Rules
image

Adicionar as instâncias à esse security group

--na instância master executar o comando abaixo
sudo docker swarm init

--nas outras instancias executar o comando retornado do docker swarm init

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment