Consolidate Docker setup

This commit is contained in:
David Heinemeier Hansson 2024-05-26 15:39:45 -07:00
parent a1f9bbddbc
commit b1c458254a
2 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,6 @@
echo -e "\e[32mINSTALLING CORE DEVELOPMENT LIBRARIES\e[0m"
sudo apt update -y
sudo apt install -y \
docker.io docker-buildx \
build-essential pkg-config autoconf bison rustc cargo clang \
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \
libvips imagemagick libmagickwand-dev mupdf mupdf-tools \

View File

@ -1,4 +1,5 @@
DOCKER_COMPOSE_VERSION="2.27.0"
sudo apt install -y docker.io docker-buildx
sudo usermod -aG docker ${USER}
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}