mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 07:33:07 +08:00
fb3fa98936
* 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>
12 lines
173 B
YAML
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
|