Skip to content

Instantly share code, notes, and snippets.

@webarthur
Created October 8, 2016 13:41
Show Gist options
  • Save webarthur/e8bd448521c6633f1db9a297bb1b5250 to your computer and use it in GitHub Desktop.
Save webarthur/e8bd448521c6633f1db9a297bb1b5250 to your computer and use it in GitHub Desktop.
Docker: php5.6 + Apache 2 + MongoDB
httpd:
image: php5.6
ports:
- 80:80
volumes:
- ./home:/home
- ./html:/var/www/html/app
- ./config/apache2:/etc/apache2
- ./config/php:/usr/local/etc/php
- ./log:/var/log/apache2
links:
- mongo:mongo
mongo:
image: mongo
ports:
- 27017:27017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment