Created
April 28, 2017 12:53
-
-
Save quinncomendant/127dc6995f91b0ef200d57f62a0ced6b to your computer and use it in GitHub Desktop.
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' | |
volumes: | |
dbdata: | |
driver: local | |
services: | |
db: | |
image: mysql/mysql-server:5.7 | |
ports: | |
- "3306:3306" | |
volumes: | |
- … | |
environment: | |
- … | |
web: | |
image: php:5.6-apache | |
ports: | |
- "80:80" | |
volumes: | |
- ~/src/media.sbinstitute.com:/var/www | |
links: | |
- db | |
environment: | |
- RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment