Code Monkey home page Code Monkey logo

docker-2's Introduction

Docker - web development

This repo contains many containers for web development and all with simplicity.

Web

Package install : apache2, php5, curl, wget..

Variable Use
{name} Replace by the name of the container
{path} Replace by the path of your project root
{env} Replace by a value concerning the Environment variable
Environment variable Use
APACHE_ROOT_PATH Default : /var/www

Install

Starting a default web container, it's really simple :

docker run --name {name} -p 80:80 -v {path}:/var/www -d codzdev/web

Starting a web container, changing the DocumentRoot from apache2 :

docker run --name {name} -p 80:80 -e APACHE_ROOT_PATH={env} -v {path}:/var/www -d codzdev/web

Console access

docker exec -it {name} bash

Stop

docker stop {name}

Remove

docker remove {name}

Database (mysql)

docker run --name db -p 3306:3306 -v {path}:/var/lib/mysql -d mysql

Link your web container to mysql container after create db container :

docker run --name {name} --link db -p 80:80 -v {path}:/var/www -d codzdev/web

Nodejs

COMING SOON ..

docker-2's People

Contributors

mariopitassi 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.