Skip to content

Instantly share code, notes, and snippets.

@mostafabahri
Created May 7, 2021 15:14
Show Gist options
  • Save mostafabahri/90c63018f2155ea98a59f73639a89c45 to your computer and use it in GitHub Desktop.
Save mostafabahri/90c63018f2155ea98a59f73639a89c45 to your computer and use it in GitHub Desktop.
docker-compose for node.js development starter
version: "3"
services:
app:
image: node:16
working_dir: /app
volumes:
- ./:/app
ports:
- 3000:3000
tty: true
command: "node"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment