I'm trying to use docker but I have a lot of problem. Now i Want to use an apache container and use a volume of my php
my images are
- nimmis/apache
- 5.6-fpm
my docker ps is:
85e592d46fcc nimmis/apache "/my_init" 3 minutes ago Up 3 minutes 0.0.0.0:8080->80/tcp apacheBarno
c9bc486563bc php:fpm "php-fpm" 15 minutes ago Up 15 minutes 9000/tcp app_php
and I Started my apache with this command
docker run --name apacheFoo --volumes-from app_php -p 8080:80 -v `pwd`:/var/www/html --rm nimmis/apache
When I visit http://192.168.99.100:8080/
( im on mac ) I can see the apache page.
when I visit http://192.168.99.100:8080/index.php
I get <?php echo "hello" ?>
instead of "hello"