Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Thibaut Gauvin committed Sep 28, 2017
1 parent 5795a44 commit 4b38509
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion 06-development-env/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
php:
build:
context: docker/
dockerfile: Dockerfile
volumes:
- "./src:/home/docker"
- "./docker/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro"
Expand Down Expand Up @@ -49,7 +50,7 @@ services:
environment:
- "PMA_HOST=db"
- "PMA_USER=root"
- "PMA_PASSWORD=root"
- "PMA_PASSWORD=${MYSQL_ROOT_PASSWORD}"

networks:
demo_meetup:
Expand Down
6 changes: 3 additions & 3 deletions 06-development-env/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ RUN docker-php-ext-install \
mysqli \
pdo_mysql

# Install xdebug extention
RUN pecl install xdebug \
&& docker-php-ext-enable xdebug
## Install xdebug extention
#RUN pecl install xdebug \
# && docker-php-ext-enable xdebug

0 comments on commit 4b38509

Please sign in to comment.