Skip to content

Instantly share code, notes, and snippets.

View utkuozbulak's full-sized avatar

Utku Ozbulak utkuozbulak

View GitHub Profile
@arahayrabedian
arahayrabedian / setup_dockercompose_ubuntu_x86-64.sh
Last active July 16, 2023 08:18
Get docker-compose (plus docker) set up and ready to go on a fresh ubuntu machine. I've done this far too often manually to test simple things on a fresh machine, so yeah. scriptify!
#!/bin/sh
# follows my interpretation of the set up guide available at
# https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository
# assumes ubuntu 16-ish and above.
set -e
# update
sudo apt-get update -y