Last active
December 22, 2017 18:10
-
-
Save rasmar/789c115c346b99a69a8af0b0bbc48be9 to your computer and use it in GitHub Desktop.
E2E - volumes
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
| frontend: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.e2e | |
| command: nginx | |
| networks: | |
| main: | |
| aliases: | |
| - frontend | |
| ports: | |
| - "3000:3000" | |
| volumes: | |
| - "./tmp:/app/dist" # It's like: from_where(in_machine):to_where(in_container) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment