| description | 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.
{% hint style="danger" %} 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 = ) {% endhint %}
To use dockerize you can clone or download de zip of project from Github.
Create with your terminal an easy-to-find folder
mkdir -p ~/.config/tevunMake a local project clone
git clone git@github.com:tevun/dockerize.git ~/.config/tevun/dockerizeOR
Download the zip of this project
wget -O ~/.config/tevun/dockerize.zip https://codeload.github.com/tevun/dockerize/zip/masterThen unzip the contents of the zip
unzip dockerize.zip && mv dockerize-master dockerizeTo use dockerize you need add the bashrc script to your terminal environment.
{% code-tabs %} {% code-tabs-item title="~/.bashrc" %}
...
source ~/.config/tevun/dockerize/.bashrc # or your custom path
...{% endcode-tabs-item %} {% endcode-tabs %}
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
bash ~/.config/tevun/dockerize/configure.sh # or your custom pathAfter 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:
php -vTo perform the service php in your docker host.
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.
- global suffix:
Dockerizewill 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_SERVICEof filedockerize/environment/variables.ini.sample. If your project folder isfooandT_DOCKERIZE_SERVICEisappthe name of your service must befoo-appto 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
acmeand you create a service with nameacme-nodeyou can perform the commandnodeanddockerizewill use this container. - file
.dockerize: You create a file called.dockerizein your project folder and describe the name of containers of services.
You can customize the main project settings. Go to the environment folder and evaluate the parameters that are defined there.
cd ~/.config/tevun/dockerize/environment- 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.
****

