Skip to content

Instantly share code, notes, and snippets.

View 190ikp's full-sized avatar
😇
( ˘ω˘)

190ikp 190ikp

😇
( ˘ω˘)
View GitHub Profile
INFO global: Vagrant version: 2.3.7
INFO global: Ruby version: 3.1.4
INFO global: RubyGems version: 3.3.26
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-2.3.7/bin/vagrant"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded"
INFO global: VAGRANT_LOG="debug"
WARN global: resolv replacement has not been enabled!
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-2.3.7/plugins/communicators/winrm/plugin.rb
@190ikp
190ikp / docker_init.sh
Created October 9, 2023 10:07
Docker installation script
#!/usr/bin/env bash
set -euxo pipefail
# shellcheck disable=SC1091
source /etc/os-release
# Check if previous version of docker-compose is installed
if command -v doker-compose > /dev/null; then
sudo rm -f "$(command -v docker-compose)"
fi