Dockerize
Bash like abstraction of local services in docker
When assuming the use of container in our workflow we come to face some challenges. Soon we realize that it is complicated to have a complete environment without installing any tool on the host.
Tevun's Dockerize initiative seeks to deliver a comfortable workflow for those who use Docker in their day-to-day lives.
Using it you will abstract all the services you use to develop to run with docker.
How to configure
Read the steps before you run them to understand what is being done. We will modify your bash environment and we don't want cause problems to you = )
Getting started
To use dockerize
you can clone or download de zip of project from Github.
Create a clone
Create with your terminal an easy-to-find folder
Make a local project clone
OR
Download
Download the zip of this project
Then unzip the contents of the zip
Configuration
To use dockerize
you need add the bashrc script to your terminal environment.
If you are using the project for the first time you can use our convenient configuration script to add local documents to your terminal environment.
To do this, run the configuration script
How to use Dockerize
Dockerize
After add the script to terminal will be created a command engine to toggle service commands to run on "global images" and/or containers relative to the project of the folder it is in.
We currently have the following configured services:
artisan
composer
node
npm
php
phpunit
quasar
vue
yarn
react
In other words, you can simply execute:
To perform the service php in your docker host.
Smart behavior
Dockerize
tries to detect which container should be run for each service. When you are in a folder that does not have a container associated with it, your output will be global.
When the current directory is associated with one container the output will be different.
Detection strategies
global suffix:
Dockerize
will first attempt to find a container that has the folder name and suffix associated with the service. You can check the service suffix in the propertyT_DOCKERIZE_SERVICE
of filedockerize/environment/variables.ini.sample
. If your project folder isfoo
andT_DOCKERIZE_SERVICE
isapp
the name of your service must befoo-app
to this detection match.service suffix: The second try is check if there is a container with the folder name followed by an hyphen and the name of service. If your project folder is
acme
and you create a service with nameacme-node
you can perform the commandnode
anddockerize
will use this container.file
.dockerize
: You create a file called.dockerize
in your project folder and describe the name of containers of services.
Customizing
You can customize the main project settings. Go to the environment folder and evaluate the parameters that are defined there.
Common Problems
Address already in use:
message: docker: Error response from daemon: driver failed programming external connectivity on endpoint * (): Error starting userland proxy: listen tcp 0.0.0.0:: bind: address already in use.
solution: use the guidelines in the Customizing section and configure the ports in the images.ini file according to your port usage.
Last updated