Created
May 8, 2017 21:53
-
-
Save abdalla/b7db1c998de96abb696b5fb5ce953ae6 to your computer and use it in GitHub Desktop.
Tutorial - docker-compose.yml
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: '3' | |
services: | |
abdalla: | |
build: . | |
container_name: nodjs-test | |
image: abdalla/nodejs | |
volumes: | |
- .:/src | |
tty: true | |
ports: | |
- "3000:3000" | |
command: [npm, start] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment