Skip to content

Create a Laravel or LAMP homestead docker container for your development environments on your MAC

Notifications You must be signed in to change notification settings

dcnl1980/homestead-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel homestead-docker for MAC

Alternative for MAMP or other LAMP stack

Create a homestead docker container for your development env. ( files taken from laravel settler: provision.sh (modified) + serve.sh )

CLI: Install docker && docker compose (or use GUI (below) as alternative)

please refer to these tutorials:

curl -sSL https://get.docker.com/ | sh
curl -L https://github.com/docker/compose/releases/download/1.6.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

GUI: Make it yourself easy to download the DMG from docker.com (alternative)

https://download.docker.com/mac/stable/Docker.dmg

Pull homestead image

docker pull shincoder/homestead:php7.0

Clone && Edit docker-compose.yml

git clone https://github.com/shincoder/homestead-docker.git

rename docker-compose.dist.yml to docker-compose.yml then edit the file with you own paths and ports.

Start your containers

There are only two containers to run. web container ( includes everything except your database ), and mariadb container.

sudo docker-compose up -d

SSH into the container (password: secret):

ssh -p 2222 homestead@localhost

Add a virtual host

Assuming you mapped your apps folder to /apps (you can change mappings in the docker-compose.yml file, it's prefered to use absolute paths), you can do:

cd / && ./serve.sh myapp.dev /apps/myapp/public

In the host, update /etc/hosts to include your app domain:

127.0.0.1               myapp.dev

That's it

Our web container starts nginx, php-fpm, redis, beanstalk. and has gruntjs, gulp, bower...etc some relevant ports have been added to docker-compose.yml ( livereload standard port, karma server port ), change them if you need to.

Todo

  • Integrating Xdebug for debugging
  • Integrate mailcatcher to get all email output
  • Move the apps folder to /var/www/apps
  • Move the apps/volumes folder to /etc

Wishes?

Notes

  • Use docker's local IP address to connect to your database. Run docker inspect --format '{{ .NetworkSettings.IPAddress }}' ${CID}, where ${CID} is docker container ID of the database
  • Databases: by default mariadb is used as a database, but you are free to use any database you want: choose from these excellent images by Tutum: tutum/mysql or tutum/postgresql, they expose different environment variables, so don't forget to update your docker-compose file accordingly.

About

Create a Laravel or LAMP homestead docker container for your development environments on your MAC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%