Skip to content

Instantly share code, notes, and snippets.

@vschoener
Created December 18, 2018 23:15
Show Gist options
  • Save vschoener/0e1777b9374dbdbcdd14dd801ba64d83 to your computer and use it in GitHub Desktop.
Save vschoener/0e1777b9374dbdbcdd14dd801ba64d83 to your computer and use it in GitHub Desktop.
version: "3.8"
services:
app:
container_name: dockertsdev_app
command: npm run start:dev
build: .
volumes:
- .:/app
# Don't forget this part, it's really important
- node_modules:/app/node_modules
ports:
- 8080:8080
volumes:
# We create a volume for the node_modules folder
node_modules: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment