Giter VIP home page Giter VIP logo

docker-nginx-php-mongo's Introduction

Nginx PHP Mongo

Docker running Nginx, PHP-FPM, Mongo.

THIS ENVIRONMENT SHOULD ONLY BE USED FOR DEVELOPMENT!

DO NOT USE IT IN PRODUCTION!

Images to use

Start using it

  1. Download it :

    $ git clone https://github.com/nanoninja/docker-nginx-php-mongo.git
  2. Run :

    $ docker-compose up -d
  3. Open your favorite browser :

Directory tree

docker-nginx-php-mongo
├── README.md
├── bin
│   └── linux
│       └── clean.sh
├── data
│   └── db
│       ├── dumps
│       └── mongo
├── docker-compose.yml
├── etc
│   ├── nginx
│   │   └── default.conf
│   ├── php
│   │   └── php.ini
│   └── ssl
└── web
    ├── app
    │   ├── composer.json
    │   ├── phpunit.xml.dist
    │   ├── src
    │   │   └── Foo.php
    │   └── test
    │       ├── FooTest.php
    │       └── bootstrap.php
    └── public
        └── index.php

Configuring Xdebug

Edit etc/php/php.ini file and add your ip address :

xdebug.remote_host=192.168.0.1

Updating composer

docker run --rm -v $(pwd)/web/app:/app -v ~/.ssh:/root/.ssh composer/composer update

Connecting Mongo from PHP

Documentation

<?php
$manager = new MongoDB\Driver\Manager("mongodb://mongo:27017/test");

$bulk = new MongoDB\Driver\BulkWrite();
$bulk->insert(['name' => 'John Doe']);

$writeConcern = new MongoDB\Driver\writeConcern(MongoDB\Driver\WriteConcern::MAJORITY, 100);
$result = $manager->executeBulkWrite('test.mycollection', $bulk);

var_dump($result);
?>

Connecting to mongo

docker exec -it mongo bash

Creating database exports

mongoexport --port 27020 --db test --collection mycollection --out $(pwd)/data/db/dumps/mycollection.json

Creating database dumps

mongodump --port 27020 --db test --collection mycollection --out $(pwd)/data/db/dumps

Generating SSL certificates

  1. Generate certificates

    $ docker run --rm -v $(pwd)/etc/ssl:/certificates -e "SERVER=localhost" jacoelho/generate-certificate
  2. Configure Nginx

    Edit nginx file etc/nginx/default.conf and uncomment the server section.

    # server {
    #     ...
    # }

Generating API Documentation

./web/app/vendor/apigen/apigen/bin/apigen generate -s web/app/src -d web/app/doc

Cleaning project

Warning: Clears all containers and volumes.

$ ./bin/linux/clean.sh $(pwd)

docker-nginx-php-mongo's People

Contributors

nanoninja avatar

Watchers

 avatar

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.