feat: add docker-compose file (#174)

* feat: Add docker-compose file

- Add `docker-compose.yml` file
- Add docker commands into the README.md file

Close #172

* docs: update README for style consistency

---------

Co-authored-by: Erison Silva <erison.silva@power.cloud>
Co-authored-by: Sat Naing <satnaingdev@gmail.com>
This commit is contained in:
Erison Silva
2023-12-13 09:55:22 +01:00
committed by GitHub
parent 058c790d26
commit fb3fa98936
2 changed files with 27 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
version: '3'
services:
app:
image: node:18
ports:
- 4321:4321
working_dir: /app
command: npm run dev -- --host 0.0.0.0
volumes:
- ./:/app