Skip to content

Instantly share code, notes, and snippets.

@syuji-higa
Last active November 16, 2019 03:58
Show Gist options
  • Save syuji-higa/0aa57f8ef8fa8bab80ac17d7645768ba to your computer and use it in GitHub Desktop.
Save syuji-higa/0aa57f8ef8fa8bab80ac17d7645768ba to your computer and use it in GitHub Desktop.
Docker Compose - Node.js
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