Created
October 18, 2019 23:03
-
-
Save furan917/2351189735da9d660540935a3e59755e to your computer and use it in GitHub Desktop.
Volume Binding
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
version: '3' | |
services: | |
nginx: | |
image: nginx | |
volumes: | |
- project-one-volume:/var/www/project-one | |
php: | |
image: php:7.2-fpm | |
volumes: | |
- project-one-volume:/var/www/project-one | |
#project-one is built from alpine, uses dockerfile to copy or git pull in files it needs on first run | |
project-one: | |
build: . | |
volumes: | |
- project-one-volume:/var/www | |
volumes: | |
project-one-volume: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment