Files
MyBlog-Next/docker-compose.yml
T
Erison Silva fb3fa98936 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>
2023-12-13 15:25:22 +06:30

12 lines
173 B
YAML

version: '3'
services:
app:
image: node:18
ports:
- 4321:4321
working_dir: /app
command: npm run dev -- --host 0.0.0.0
volumes:
- ./:/app