Created
June 11, 2018 17:28
-
-
Save aric49/79be4fbc101cfffe88ce9d3ec818ab84 to your computer and use it in GitHub Desktop.
docker-compose cache_from
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
| myproject-web-php: | |
| build: | |
| context: . | |
| cache_from: | |
| - myproject_myproject-web-php:latest #OR do I use: myproject-web-php:latest ? | |
| dockerfile: Dockerfile | |
| args: | |
| BUILD_ENVIRONMENT: local | |
| container_name: ${CONTAINER_PREFIX}.php | |
| volumes: | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment