-
Install Vagrant binaries or use Homebrew
-
Judoscale
Save 47% on cloud hosting with autoscaling that just works. Judoscale integrates with Rails, Sidekiq, Solid Queue, and more to make autoscaling easy and reliable. Save big, and say goodbye to request timeouts and backed-up job queues.
-
#!/usr/bin/env bash echo '--- SYSTEM UPDATE ---' sudo apt update sudo apt install ca-certificates curl gnupg lsb-release net-tools echo '--- INSTALL DOCKER ---' curl -fsSL https://get.docker.com | sudo sh sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose echo '--- SETUP DOCKER SYSTEMD ---' sudo mkdir /etc/systemd/system/docker.service.d/ cat <>/tmp/docker.conf [Service] ExecStart= ExecStart=/usr/bin/dockerd EOF sudo mv /tmp/docker.conf /etc/systemd/system/docker.service.d/docker.conf echo '--- SETUP DOCKERD ---' cat <>/tmp/daemon.json { "hosts": [ "tcp://0.0.0.0:2375", "unix:///var/run/docker.sock" ] } EOF sudo mv /tmp/daemon.json /etc/docker/daemon.json echo '--- RELOAD DOCKERD ---' sudo systemctl daemon-reload sudo systemctl restart docker echo '--- SETUP DOCKER PERMISSIONS---' sudo usermod -aG docker $USER
-
Using Homebrew for development environment configuration is boring. Development environment should be temporary and be reproducible whithin couple of minutes. Yes, it is about hosting dotfiles and writing scripts which do support binaries installation. For variety of versions. So modern solution is about using containers. There are many ways to use containers for development and their orchestration. What is a rapid solution for lazy devs? The Docker Desktop. Easy, install and run.