Giter Club home page Giter Club logo

docker-apache-mysql-php-mongo's Introduction

Table Of Contents

PROJECT DESCRIPTION

Get your PHP/MySQL project up and running within minutes with the power of Docker and Composer! With few commands, you'll have your development, staging and production infrastructures ready-to-go taking advantage of Docker containers. Within this project, you'll find a container for the following dependencies:

  • apache
  • php-fpm
  • mysql
  • mongodb
  • couchdb

Moreover, database data and sessions are managed with a specific container, and a last container is provided as the workspace (a special container you can use to run CLI commands).
Thanks to Composer, this project can be easily integrated and encapsulated into you existing webapp, permitting you to deploy it faster on development machines, staging servers and production servers.

REQUIREMENTS

  • docker-compose, min version 1.8
  • docker, min version 1.10

If you want to install via composer:

  • composer
  • php, min version 5.6

QUICK INSTALL via Composer

NOTE: for alternative install methods, look at the dedicated section

  • In the "extra" section of your project's composer.json file, add
	"extra": {
        "installer-paths": {
            "docker/": ["lombax85/docker-apache-mysql-php-mongo"]
        }
    }
  • In the "scripts" section, "post-install-cmd" and "post-update-cmd" sub-section of your project's composer.json file, add
	"scripts": {
    	"post-install-cmd": [
        	"if [ -f docker/composer_install.php ]; then php docker/composer_install.php; fi"
    	],
    	"post-update-cmd": [
            "if [ -f docker/composer_install.php ]; then php docker/composer_install.php; fi"
        ],
        "pre-update-cmd": [
            "if [ -f docker/composer_pre_update.php ]; then php docker/composer_pre_update.php; fi"
        ]
    }
  • Add the dependency using the command
composer require lombax85/docker-apache-mysql-php-mongo

EXTRA: add /docker and /docker_data in your project's .gitignore file

  • The whole project will be installed inside the "docker" subdir, and a "docker_data" directory will appear when you start you containers.
  • inside the "docker" directory, you will find a .env file where you can set your additional environment variables (the file is pre-configured and no need of additional configuration is needed to get it up and running)
  • The configuration (ports to bind, modules to enable in the containers) is stored in a file named .env inside the docker directory. The composer_install.php script auto-creates this file when you install this package the first time. Then, it makes a backup copy into your root directory at .env.docker.backup. Add this file to your version control. Every time you update the package via composer update, assuming that you have correctly added the pre and post-update scripts as specified, a new backup copy of the file is made (the previous .env.docker.backup will be overwritten, so it's important that you put it under version control), and the file is put back when composer has finishing to update the package.

The ./docker_data directory containes all data of databases and sessions. If you use this setup in a production environment, don't forget to backup all data with the appropriate tools (example: mysqldump for mysql).
The ./docker_data directory is shared among containers using directory binding and is kept between container rebuilds.
For this reason, when you rebuild - for example - your mysql container, the data are not lost. However, pay attention because if you change your mysql engine to somethings not compatible with the content of your data directory, the content itself can become corrupted.

By default, the data directory is configured to be inside ./docker_data.

The directory is created when you start your containers the first time. If you want to change this path, please don't place the directory inside the ./docker folder, since the folder is recreated every time you run "composer update" and you'll lost data.

START

  • execute this commands (if you don't need a specific engine, omit it in the "up" command)
docker-compose build apache2 mysql workspace mongo php-fpm couchdb
docker-compose up -d apache2 mysql mongo couchdb
  • After these commands you'll have your containers up and running, use docker ps to see them
  • Now do some post-install things:
    • MongoDB: Unlike MySQL, MongoDB doesn't allow to set default username and password prior to installation. For this reason, you must set them with a post-run script. To set default user and password for mongodb, type
     docker-compose exec mongo sh /mongo.sh user password
    

INTERACTING with projects

The "workspace" container should be used for all cli commands (composer install/update, artisan)

docker-compose exec workspace bash

will give you a shell inside the www directory. If you prefer, you can send your command directly without using the shell. For example, to send a "php artisan migrate", simply do

docker-compose exec workspace php artisan migrate

HOSTNAMES:

Docker creates a virtual private and isolated network for all containers of the same project (it uses the root directory name as a prefix).
To reach one container from another (for example for reaching mysql container from php-fpm) simply use the hostname. The hostname is the name of the container in the docker-compose.tml file.
Don't use the private ip because it can change at any time.

So, when you have to configure your mysql server hostname in your web app's config file, simply type "mysql"

MYSQL_HOST=mysql

If you bash into a container you'll see

root@7aa4b96361fb:/var/www# ping mysql
PING mysql (172.19.0.4) 56(84) bytes of data.
64 bytes from mongo_mysql_1.mongo_default (172.19.0.4): icmp_seq=1 ttl=64 time=0.148 ms

In this project, these containers/hostname exists

workspace mysql php-fpm apache2 mongo

ALTERNATIVE INSTALL METHODS

Alternative - Existing project - install in root directory

  • Download this repository as zip
  • copy "docker-compose.yml" file and "docker" directory in your project's root directory
  • copy the ".env.example" file into your project directory and rename it into ".env" NOTE: if your project has already a file called .env, you can use a subdirectory as explained in "Existing project - subdirectory"

Alternative - Existing project - install in subdirectory

  • Download this repository as zip
  • copy your project files inside a "project" subfolder

Alternative - New project - install in subdirectory

  • Download as zip (if you clone it, remove the .git directory)
  • Put your project files inside the root directory or inside a "project" subdirectory (the name of the subdirectory can be set later) OR, alternative, copy

ADDITIONAL SETUP and Troubleshooting

  • on mac: enable file sharing on ./docker_data and ./docker folders

ACTUAL ISSUES

  • If you stop (ctrl+c) during "docker-compose up" during the first container startup, the content of /docker/data can became corrupt or not correctly initialized. In this case, for example, you won't be able to connect to MySQL. To solve:
docker-compose stop
rm -Rf ./docker/data/mysql/*

NOTE: if you wipe MongoDB Data, don't forget to re-add the default user

FIXED ISSUES

  • including as a composer dependencies is, by now, only for testing and development machines. There is a known issue where the ./docker/data directory (the directory containing database data) is deleted if the package is updated via "composer update". This will be solved in a future release, if you plan to use this project in a production environment don't use composer, use other inclusion methods explained in the INSTALL section. FIXED BY: now the data directory is created inside your main project's directory
  • If you install inside two different projects on the same machine, you have to rename the container directory ("docker") to something unique. FIXED BY: the install script now creates a .env with an unique project name, docker_TIMESTAMP

TODO

  • create install.php install script to replace the post-install and post-update hooks

docker-apache-mysql-php-mongo's People

Contributors

lombax85 avatar pierpaolocira avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

docker-apache-mysql-php-mongo's Issues

Small question about docker_data

Hi,
thank you for this work: it is exactly what I need.

I have (I hope not very stupid) question: I'm a Mac user, and after following your instruction (manual install, my html files are in a subfolder that i configured into .env) and running the container, I still continue not to see the "docker_data" folder.

I'm using the master branch.

Do you have any idea about, or a suggestion in order to understand where that folder is?

Thank you

Drush doesn't work properly

Hi,
I tried to use "drush" by setting INSTALL_DRUSH=true into "workspace" configurations.

Due to the nature of Drush it isn't able to properly work if the system misses for a way to connect to the database.
More specifically: it needs for the "mysql-client" installed package into th "workspace" in order to work properly.

I kwnow this is can be classified as a "php-fpm" bug, but you have to also consider that this "docker-apache-mysql-php-mongo" configuration already comes with mysql (meanwhile in php-fpm it is not sure).

This is why I suggest to modify the Docker file of the workflow in order to also install the mysql client if INSTALL_DRUSH is enabled.

php.ini file in command line

Hi,
I used your docker-compose configuration (manual installation bly cloning the master repository) and I configured PHP to the 5.6 version (PHP_DOCKERFILE=Dockerfile-56 as you can see in my .env file attached in #1 ).

In any case if I try to launch php by CLI it uses the file stored in /etc/php/7.0

In order to verify, just run docker-compose exec workspace php -i | grep 'Configuration File'

The result on my environment is:
Configuration File (php.ini) Path => /etc/php/7.0/cli Loaded Configuration File => /etc/php/7.0/cli/php.ini

I already saw that /etc/php/5.6 doesn't contain a cli folder, so maybe it is the expected behaviour, but this configuration can be misleading.

So I think that:

  • this is a bug in the configuration
  • OR should be a good idea to replicate the php.ini file also in the 5.6/cli folder, in order to avoid confusions.

Thank you

Allow parametrisation of MongoDB version

Hi,
I think, such as for PHP, to allow users to choose the most suitable PHP version they need.

My idea is to allow to choose between 2.6, 3.0, and latest (currently 3.1 in MongoDB docker repository).

If you think it is suitable I can do it. Something like:
# MongoDB version: latest version use Dockerfile, v3.0 use Dockerfile-30, v2.6 use Dockerfile-26, MONGODB_DOCKERFILE=Dockerfile
and the relevant part in docker-compose.yml

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.