-
-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
1 parent
058c790
commit fb3fa98
Showing
2 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |