Coder Social home page Coder Social logo

wearede / devception Goto Github PK

View Code? Open in Web Editor NEW
13.0 2.0 2.0 117 KB

Inception Style (Docker inside Vagrant inside Host) Development Environment

Vim Script 68.01% Shell 12.33% Dockerfile 19.66%
centos7 vagrantfile docker webserver development-environment vim tmux

devception's Introduction

DevCeption

DevCeption

This is an inception style (Docker inside Vagrant inside Host) development environment built around tmux/vim workflow.

Why?

We (Devs) use too many tools for our everyday tasks, from editors to webservers to terminals. This makes switching machines painful. In case of theft, data damage, or simply format-reinstall OS, you need to go through the pain of reinstall reconfigure everytime... Solution to this problem is to have all your dev tools inside a container that can be created, destroyed, reproduced on any machine without a hit to productivity.

With DevCeption, you can go from mac to linux to windows and always find your habitual dev environment. This is huge boost to productivity and versatility as Host OS becomes meaningless.

p.s. Also because docker on mac really sucks!

Goodies

docker

  • services
    • webserver
      • nginx
        • php generic config (Laravel)
        • WordPress optmized config
      • php5-fpm, php7-fpm
      • mariadb
  • docker-compose
  • php-tools
    • php-cli
    • composer
    • phpunit
    • phpcs (with wpcs), phpcbf

oh-my-zsh

  • plugins: git, history-substring-search, tmux

tmux

asciicast


vim

  • vim-quantum
  • ctrlp
  • vim-vinegar
  • vim-gitgutter
  • vim-trailing-whitespace
  • editorconfig-vim
  • delimitMate
  • syntastic
  • indentLine
  • vim-commentary
  • vim-polyglot
  • matchtagalways
  • vim-buftabline
  • vim-bracketed-paste
  • vim-tmux-focus-events
  • vim-tmux-clipboard
  • vim-surround
  • YouCompleteMe
  • ultisnips
  • vim-snippets

nvm

  • node lts
  • npm
    • gulp
    • diff-so-fancy

git

  • git-commit-template
  • diff-so-fancy

Host Requirements

  • virtualbox
  • vagrant
  • ansible
  • rsync

Getting Started

Step 1

git clone https://github.com/wearede/DevCeption
cd DevCeption
vagrant up

Vagrant will perform following operations:

  • It will first download and then import the centos7 base box.
  • It will rsync www and docker configuration files to the newly created centos7 base box.
  • Then using ansible it will configure and install dev tools from playbooks.

... grab a coffee, it will take some time on a slow connection.

Note: Install vim plugins task could take a while, but if it hangs see Common issues section below.

Step 2

Lets configure ssh on host machine for painless ssh-eing. On macOS you would do:

vi ~/.ssh/config

and paste

#
Host DevCeption
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile ~/Code/Vagrant/DevCeption/.vagrant/machines/DevCeption/virtualbox/private_key
IdentitiesOnly yes
LogLevel FATAL

obviously replacing IdentityFile path ~/Code/Vagrant/DevCeption with the location of your DevCeption directory.

:wq

and now you can simply ssh DevCeption from your host machine.

Step 3

We need to build docker webserver containers inside a DevCeption box - and while we are at it, we can take tmux out for a spin.

ssh DevCeption and once you are in type ts webserver

  • new tmux session will start, type a. cd /srv/docker/services,
  • lets divide window in two panels type b. alt+\,
  • to navigate panels use alt+h or alt+l.

In the left panel cd webserver directory on the right one cd phpcs

  • in the webserver directory run sudo docker-compose up
  • and inside phpcs dir run sudo docker build -t phphcs . <- note the .

tmux

You can now quit iterm2 but tmux session will continue to run inside DevCeption box (in the background), you can always go back to it by typing ta webserver, and to see all running sessions type tl.

Step 4

Lets connect to mariadb running inside DevCeption box, inside docker container, from our host machine. On macOS sequelpro works really well for managing mariadb/mysql:

sequelpro

  • We are using ssh tunneling to DevCeption box.
  • ssh key is the same as IdentityFile from step 2, e.g. ~/Code/Vagrant/DevCeption/.vagrant/machines/DevCeption/virtualbox/private_key
  • mariadb root password is defined in docker-compose.yml

Step 5

We need to route a project.test to the DevCeption box. You can do this simply by adding a relevant entry in /etc/hosts file:

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost

# DevCeption
192.168.33.33 project.test

192.168.33.33 is the DevCeption box IP we assigned in the vagrant config.

But for multiple projects, manually adding/removing local names to the hosts file will get boring pretty fast. Using Dnsmasq we can route all *.test names to the vagrant box, avoiding manual entries in /etc/hosts file for each project.

On macOS:

brew install dnsmasq
sudo bash -c 'echo "nameserver 127.0.0.1" > /etc/resolver/test'
bash -c 'echo "address=/test/192.168.33.33" > $(brew --prefix)/etc/dnsmasq.d/devception.conf'

Uncomment conf-dir=/usr/local/etc/dnsmasq.d/,*.conf in $(brew --prefix)/etc/dnsmasq.conf

And using homebrew-services start dnsmasq service:

sudo brew services start dnsmasq

Add local DNS to search order in System Preferences:
System Preferences > Network > Wi-Fi (or whatever you use) > Advanced... > DNS > add 127.0.0.1 to top of the list.

pinging any *.test name should now produce these results:

PING test.test (192.168.33.33): 56 data bytes
64 bytes from 192.168.33.33: icmp_seq=0 ttl=64 time=0.544 ms
64 bytes from 192.168.33.33: icmp_seq=1 ttl=64 time=0.408 ms

Step 6

Finally, let's see how to get a web project up and running.

Back Up Your Work

It is important to understand that project files will live inside DevCeption box and will not be synced back to host machine automatically. You have to do this manually.

Inside DevCeption root directory you can run ./pull.sh to download (backup) changes from the virtual box, and ./push.sh to upload.

Warnning: Don't forget to periodically bring back / backup changes to your host machine, especially if you decide to do vagrant destroy ;)

Common Issues

  • Ansible task Install vim plugins hangs:
    • Iterm2 settings disable profile -> terminal -> environment -> set locale variable automatically
    • oh-my-zsh uncomment export LANG=en_US.UTF-8 in .zshrc
  • Copying to host machine clipboard:
    • Iterm2 in general settings enable Applications in terminal may access clipboard (works for tmux).
  • In some browsers, project.test will trigger google search, to avoid this add http:// in front or / in the end.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.