Skip to content

Instantly share code, notes, and snippets.

@naiwungmusic
Last active December 5, 2015 07:46
Show Gist options
  • Save naiwungmusic/30abb8fffd78cca7316e to your computer and use it in GitHub Desktop.
Save naiwungmusic/30abb8fffd78cca7316e to your computer and use it in GitHub Desktop.
app:
image: yappabe/data
volumes:
- .:/var/www/app
- /vendor
tty: true
nginx:
image: yappabe/nginx
ports:
- 80:80
links:
- php
- hhvm
volumes_from:
- app
environment:
DOCUMENT_ROOT: /var/www/app/public
INDEX_FILE: index.php
PHP_FPM_SOCKET: php:9000
mysql:
image: tutum/mysql
ports:
- 3306:3306
environment:
MYSQL_PASS: SStmTY4sJ7+EZVkr
MYSQL_USER: KZ8Mp2F73LGc
ON_CREATE_DB: kitchenzero
php:
image: yappabe/php:7.0.0
expose:
- 9000:9000
volumes_from:
- app
links:
- mysql
hhvm:
image: yappabe/hhvm
expose:
- 8000:8000
volumes_from:
- app
links:
- mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment