Coder Social home page Coder Social logo

docker_website's Introduction

Aim of this Docker image

Make a web site to be portable, using Apache/PHP/MySQL.

Config

  • Put your web site into the www directory
    (index.php is given as sample).
  • Change variables in mysql.sh : DB_NAME, DB_USER, USER_PASSWD...
    This script will be deleted and not included into the image.
  • Replace the database.sql with the dump of your database.
    It will be processed once, while compiling the Docker image, then deleted.

Creating image

Replace IMAGENAME with the lower case name you want :

$ cd [path to the Dockerfile]
$ docker build -t [IMAGENAME] .

Start image

$ docker run -d -p 80:80 [IMAGENAME]

Then open your browser to http://localhost.

Connect to MySQL server

Look at your container id with :

docker ps

then

docker exec -it [CONTAINER ID] bash
root@d779731e73ac:/# mysql -u myuser -p

The user, or root, are those you can manage in the mysql.sh file before the build.

Show Apache logs

docker exec -it [CONTAINER ID] bash
root@d779731e73ac:/# tail -f /var/log/apache2/error.log
root@d779731e73ac:/# tail -f /var/log/apache2/access.log

Documentation

Docker official site

docker_website's People

Contributors

tazeg avatar

Watchers

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