build: update docker for dev environment (#3551)

* build: update dockerfile for dev environment

* chore: add script to centralize docker commands

* build: create docker-compose.yml for services

* chore: add makefile target for docker-compose
This commit is contained in:
Ítalo Johnny 2024-08-26 19:05:08 -03:00 committed by GitHub
commit 6cdc915460
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 71 additions and 13 deletions

7
docker/dev.start.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
cd src/frontend \
&& rm -rf node_modules \
&& npm install \
&& npm run dev:docker &
make backend