Skip to content

Instantly share code, notes, and snippets.

View mikkimonroe's full-sized avatar

Mikki Monroe mikkimonroe

  • RecoverySky Inc 501c3
  • Springfield, MO USA
  • 06:41 (UTC -05:00)
View GitHub Profile
@thimslugga
thimslugga / setup-docker-al2023.md
Last active May 13, 2025 07:26
Setup Docker on Amazon Linux 2023

Setup Docker on Amazon Linux 2023

The following guide is for setting up Docker with docker-compose v2 on Amazon Linux 2023. The steps are intendend for AL2023 on EC2 but should mostly work for the AL2023 VMs running on other hypervisors.

Overview of Updating Amazon Linux 2023

Check for new updates

Get the hosts current Amazon Linux 2023 release:

@johndpope
johndpope / install.sh
Created October 14, 2021 04:49 — forked from aaabramov/install.sh
Installing zsh + oh-my-zsh on Amazon EC2 Amazon Linux 2 AMI
sudo yum update
# Installing ZSH
sudo yum -y install zsh
# Check ZSH has been installed
zsh --version
# Install "util-linux-user" because "chsh" is not available by default
# See https://superuser.com/a/1389273/599050