Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 761 Bytes

File metadata and controls

55 lines (48 loc) · 761 Bytes

Docker


Content

  • Nginx
  • JAVA
  • Python
  • Golang

Support Architecture

  • x86_64
  • aarch64 / arm64v8

Install Docker

Amazon Linux2

yum install -y docker
systemctl enable --now docker
usermod -aG docker ec2-user
chmod 666 /var/run/docker.sock

Amazon Linux 2023

dnf install -y docker
systemctl enable --now docker
usermod -aG docker ec2-user
chmod 666 /var/run/docker.sock

Ubuntu

apt install -y docker
systemctl enable --now docker
usermod -aG docker ubuntu
chmod 666 /var/run/docker.sock

Install Package

alpine - gcompat

apk add gcompat

alpine - curl

apk --no-cache add curl

ubuntu - ping

apt-get install iputils-ping