Skip to content

Commit

Permalink
Created docker-compose file for local dev w/ live-reloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Sawyer committed Jun 12, 2019
1 parent 49a7152 commit 0c65f07
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: '2'
services:
web:
build:
context: .
dockerfile: local.Dockerfile
volumes:
- .:/usr/src/app
ports:
- "4200:4200"
command: bash -c "npm install && npm run start:docker"

0 comments on commit 0c65f07

Please sign in to comment.