Last active
April 4, 2017 21:52
-
-
Save amy/627be19d4dbe42741463b2507058f4e8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # docker-compose.yml | |
| version: '2' | |
| services: | |
| apache: | |
| image: php:7.1.3-apache | |
| volumes: | |
| - content:/var/www/html/ | |
| apache-lb: | |
| image: rancher/lb-service-haproxy:v0.6.4 | |
| ports: | |
| - 81:80 | |
| volumes: | |
| content: | |
| driver: rancher-nfs # notice the changes here | |
| external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment