[FEAUTRE] Bring docker-compose.yml

This commit is contained in:
Nikolas Hagelstein 2023-07-27 00:11:09 +02:00
parent aff785eabc
commit c634db70f4

10
docker-compose.yml Normal file
View file

@ -0,0 +1,10 @@
services:
dev:
image: "node:16"
user: "node"
working_dir: /home/node/app
volumes:
- ./:/home/node/app
ports:
- "8080:8080"
command: sh -c "yarn install && yarn build && yarn dev"