Skip to content

Commit 9dc1d07

Browse files
Update code and structure
1 parent 7ff5ef4 commit 9dc1d07

File tree

5 files changed

+40
-55
lines changed

5 files changed

+40
-55
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ _**DOCUMENT_ROOT**_
3232

3333
It is a document root for Apache server. The default value for this is `./www`. All your sites will go here and will be synced automatically.
3434

35-
_**DATABASE_DIR**_
35+
_**MYSQL_DATA_DIR**_
3636

37-
This is MySQL data directory. The default value for this is `./data`. All your MySQL data files will be stored here.
37+
This is MySQL data directory. The default value for this is `./data/mysql`. All your MySQL data files will be stored here.
3838

3939
_**VHOSTS_DIR**_
4040

bin/webserver/Dockerfile

+13-35
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,20 @@
1-
FROM php:7.1-apache
1+
FROM php:7.0-apache
22

3-
RUN apt-get update
3+
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
44

5-
RUN apt-get install -y g++
6-
RUN apt-get install -y --no-install-recommends apt-utils
5+
RUN apt-get update && apt-get install -y g++ \
6+
libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev \
7+
libpng12-dev zlib1g-dev libpng-dev libicu-dev libcurl4-openssl-dev libxml2-dev
78

8-
# install extensions
9+
RUN docker-php-ext-install mysqli mbstring zip intl mcrypt curl json
10+
RUN docker-php-ext-install iconv xml xmlrpc
911

10-
RUN apt-get install -y libcurl4-openssl-dev
11-
RUN docker-php-ext-install curl
12+
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
13+
&& docker-php-ext-install -j$(nproc) gd
1214

13-
RUN apt-get install -y libicu-dev
14-
RUN docker-php-ext-install intl
15-
16-
RUN docker-php-ext-install mbstring
17-
18-
RUN apt-get install -y libmcrypt-dev
19-
RUN docker-php-ext-install mcrypt
20-
21-
RUN apt-get install -y libxml2-dev
22-
RUN docker-php-ext-install dom xml
23-
24-
RUN docker-php-ext-install pdo_mysql mysqli
25-
26-
RUN apt-get install -y libgd-dev libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
27-
RUN docker-php-ext-configure gd --with-freetype-dir=/usr
28-
RUN docker-php-ext-install gd exif
29-
30-
# xdebug
31-
RUN pecl install xdebug \
32-
&& docker-php-ext-enable xdebug \
33-
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
34-
&& echo "xdebug.default_enable=1\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
35-
&& echo "xdebug.remote_enable=1\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
36-
&& echo "xdebug.remote_connect_back=1\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
37-
&& echo "xdebug.remote_autostart=1\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
38-
&& echo "xdebug.remote_handler=dbgp\n" >> /usr/local/etc/php/conf.d/xdebug.ini \
39-
&& echo "xdebug.remote_port=9000\n" >> /usr/local/etc/php/conf.d/xdebug.ini
15+
RUN pecl install redis-3.1.0 \
16+
&& pecl install xdebug-2.5.0 \
17+
&& docker-php-ext-enable redis xdebug
4018

4119
# Enable apache modules
42-
RUN a2enmod rewrite
20+
RUN a2enmod rewrite headers

docker-compose.yml

+22-15
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,46 @@ services:
44
webserver:
55
build:
66
context: ./bin/webserver
7-
container_name: webserver
7+
container_name: 'tnb-webserver'
8+
restart: 'always'
89
ports:
910
- "80:80"
1011
- "443:443"
1112
links:
12-
- db
13+
- mysql
1314
volumes:
1415
- ${DOCUMENT_ROOT-./www}:/var/www/html
1516
- ${PHP_INI-./config/php/php.ini}:/usr/local/etc/php/php.ini
1617
- ${VHOSTS_DIR-./config/vhosts}:/etc/apache2/sites-enabled
1718
- ${LOG_DIR-./logs/apache2}:/var/log/apache2
18-
db:
19+
mysql:
1920
build: ./bin/mysql
20-
container_name: db
21+
container_name: 'tnb-mysql'
22+
restart: 'always'
2123
ports:
2224
- "3306:3306"
2325
volumes:
24-
- ${DATABASE_DIR-./data}:/var/lib/mysql
26+
- ${MYSQL_DATA_DIR-./data/mysql}:/var/lib/mysql
2527
- ${MYSQL_LOG_DIR-./logs/mysql}:/var/log/mysql
2628
environment:
2729
MYSQL_ROOT_PASSWORD: tiger
28-
MYSQL_DATABASE: docker
29-
MYSQL_USER: docker
30-
MYSQL_PASSWORD: docker
30+
MYSQL_DATABASE: tnb
31+
MYSQL_USER: tnb
32+
MYSQL_PASSWORD: tnb
3133
phpmyadmin:
3234
image: phpmyadmin/phpmyadmin
33-
container_name: phpmyadmin
35+
container_name: 'tnb-phpmyadmin'
3436
links:
35-
- db
36-
ports:
37-
- 8080:80
37+
- mysql
3838
environment:
39-
MYSQL_USERNAME: root
40-
MYSQL_ROOT_PASSWORD: password
39+
PMA_HOST: mysql
40+
PMA_PORT: 3306
41+
ports:
42+
- '8080:80'
4143
volumes:
42-
- /sessions
44+
- /sessions
45+
redis:
46+
container_name: 'tnb-redis'
47+
image: redis:latest
48+
ports:
49+
- "6379:6379"

sample.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DOCUMENT_ROOT=./www
2-
DATABASE_DIR=./data
3-
PHP_INI=./config/php/php.ini
42
VHOSTS_DIR=./config/vhosts
53
APACHE_LOG_DIR=./logs/apache2
4+
PHP_INI=./config/php/php.ini
5+
MYSQL_DATA_DIR=./data/mysql
66
MYSQL_LOG_DIR=./logs/mysql

www/test_db.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$link = mysqli_connect("db", "docker", "docker", "docker");
2+
$link = mysqli_connect("mysql", "tnb", "tnb", "tnb");
33

44
if (!$link) {
55
echo "Error: Unable to connect to MySQL." . PHP_EOL;

0 commit comments

Comments
 (0)