feat: dockerize dev env
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
parent
a85ffe0a5b
commit
0b43a22d8e
1 changed files with 15 additions and 0 deletions
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
version: '3.7'
|
||||||
|
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: node:16.19.1-alpine3.17
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./web:/app
|
||||||
|
working_dir: /app
|
||||||
|
entrypoint: npm run dev
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
|
||||||
Loading…
Reference in a new issue