It doesn't make much sense to reinstall Vagrantfile once lost the association with vbox, yet vbox is sitting right there.
Here's a list of steps you could ease your pain.
Steps:
-
Go to your Vagrantfile directory
-
Get the id of your target
It doesn't make much sense to reinstall Vagrantfile once lost the association with vbox, yet vbox is sitting right there.
Here's a list of steps you could ease your pain.
Steps:
Go to your Vagrantfile directory
Get the id of your target
<?php | |
class RomanNumeralsConverter | |
{ | |
protected static $mappings = [ | |
'I' => 1, | |
'V' => 5, | |
'X' => 10, | |
'L' => 50, | |
'C' => 100, |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
nodenv
is a great tool, but its installation on Ubuntu is never smooth for me.
Here are instructions to install nodenv along with node-build and node-aliases plugins.
ℹ️ note - nodenv recommands updating the PATH though not all programs run in a shell. i prefer adding symlinks to the nodenv binary and shims to make it available everywhere.
The script can be pasted into a terminal as is
# install the base app