Skip to content

Instantly share code, notes, and snippets.

@Link2k5
Created September 6, 2021 22:25
Show Gist options
  • Save Link2k5/3f0a8911068df50ec36fc9d2b6a5d02e to your computer and use it in GitHub Desktop.
Save Link2k5/3f0a8911068df50ec36fc9d2b6a5d02e to your computer and use it in GitHub Desktop.
Simple docker-compose for node
version: "3.9"
services:
node:
image: node
working_dir: /home/node/app
container_name: node
tty: true
user: node
volumes:
- ./:/home/node/app
ports:
- 3000:3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment