Skip to content

Instantly share code, notes, and snippets.

@prateekguptaiiitk
Created October 7, 2020 15:57
Show Gist options
  • Save prateekguptaiiitk/a36bacddda39e709259b8620c25e4a10 to your computer and use it in GitHub Desktop.
Save prateekguptaiiitk/a36bacddda39e709259b8620c25e4a10 to your computer and use it in GitHub Desktop.
version: "3.7"
x-common-props: &common-props
build:
context: ./
target: base
working_dir: /base
volumes:
- ./app:/base
- node_modules:/base/node_modules
services:
npm:
<<: *common-props
entrypoint: npm
dev:
<<: *common-props
ports:
- "3000:3000"
command: npm run dev
volumes:
node_modules:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment