tightenco / takeout
- суббота, 29 августа 2020 г. в 00:24:14
PHP
Docker-based development-only dependency manager; pairs with Valet.
Takeout is a Mac-based CLI tool for spinning up tiny Docker containers, one for each of your development environment dependencies.
It's meant to be paired with a tool like Laravel Valet.
With takeout enable mysql you're running MySQL, and never have to worry about managing or fixing Homebrew MySQL again.
But you can also easily enable ElasticSearch, PostgreSQL, MSSQL, Redis, and more, with a simple command.
Current list of services:
Install Takeout with Composer by running:
composer global require tightenco/takeoutMake sure the ~/.composer/vendor/bin directory is in your system's "PATH".
Run takeout and then a command name from anywhere in your terminal.
One of Takeout's primary benefits is that it boots ("enables") or deletes ("disables") Docker containers for your various dependencies quickly and easily.
Because Docker offers persistent volume storage, deleting a container (which we call "disabling" it) doesn't actually delete its data. That means you can enable and disable services with reckless abandon.
Show a list of all services you can enable.
takeout enablePassed the short name of a service, enable the given service.
takeout enable mysqlShow a list of all enabled services you can disable.
takeout disablePassed the short name of a service, disable the enabled service which matches it most closely.
takeout disable mysqlAnother of Takeout's benefits is that it allows you to have multiple versions of a dependency installed and running at the same time. That means, for example, that you can run both MySQL 5.7 and 8.0 at the same time, on different ports.
Run takeout enable mysql twice; the first time, you'll want to choose the default port (3306) and the first version (5.7), and the second time, you'll want to choose a second port (3307), the second version (8.0) and a different volume name (so that they don't share the same mysql_data).
Now, if you run takeout list, you'll see both services running at the same time.
+--------------+----------------+---------------+-----------------------------------+
| CONTAINER ID | NAMES | STATUS | PORTS |
+--------------+----------------+---------------+-----------------------------------+
| 4bf3379ab2f5 | TO--mysql--5.7 | Up 2 seconds | 33060/tcp, 0.0.0.0:3306->3306/tcp |
| 983acf46ceef | TO--mysql--8.0 | Up 35 seconds | 33060/tcp, 0.0.0.0:3307->3306/tcp |
+--------------+----------------+---------------+-----------------------------------+Sadly, no.
First, run `lsof -i :3306` (where 3306 is the port that's unavailable.)
If you see output like this:
com.docke 936 mattstauffer 52u IPv6 0xc0d6f0b06d5c4efb 0t0 TCP localhost:mysql->localhost:62919 (FIN_WAIT_2)
TablePlus 96155 mattstauffer 16u IPv4 0xc0d6f0b0b6dccf6b 0t0 TCP localhost:62919->localhost:mysql (CLOSE_WAIT)
The solution is to just close your database GUI, and then it should be released.
The best way to see our future plans is to check out the Projects Board, but here are a few plans for the future:
self-remove command: Deletes all enabled services and then maybe self-uninstalls?upgrade: destroys the old container, brings up a new one with a newly-specified tag (prompt user for it, default latest) and keeps all other parameters (e.g. port, volume) exactly the same as the old onept/passthrough: proxy commands through to docker (./takeout pt mysql stop)