Last active
November 16, 2019 03:58
-
-
Save syuji-higa/0aa57f8ef8fa8bab80ac17d7645768ba to your computer and use it in GitHub Desktop.
Docker Compose - Node.js
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: '2' | |
services: | |
node: | |
image: library/node | |
container_name: node-sample | |
volumes: | |
- ./src:/src | |
working_dir: "/src" | |
command: "node index.js" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment