Last active
May 2, 2016 06:47
-
-
Save james-nesbitt/70692b2ecff6d24cfe1b4dbaac85097c to your computer and use it in GitHub Desktop.
OSX Docker-Compose test yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
www: | |
image: jamesnesbitt/alpine-nginx-pagespeed-app | |
links: | |
- fpm:fpm.app | |
ports: | |
- 8080:80 | |
networks: | |
- default | |
fpm: | |
image: jamesnesbitt/alpine-php-app | |
links: | |
- db:db.app | |
db: | |
image: jamesnesbitt/alpine-mariadb-app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment