File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -22,3 +22,4 @@ dist-ssr
2222* .njsproj
2323* .sln
2424* .sw ?
25+ Session.vim
Original file line number Diff line number Diff line change @@ -23,12 +23,21 @@ Navigate to `http://localhost:3000` to see your documentation.
2323
2424#### Build an Image
2525To build an image, navigate to the root of the project and run this command:
26+
2627``` bash
2728podman-compose build
2829```
2930
31+ #### Create ` node_modules `
32+ Run this command to install npm packages and generate a ` node_modules ` directory on your local machine:
33+
34+ ``` bash
35+ podman-compose run --rm app npm i
36+ ```
37+
3038#### Run the Container
3139To run a container, navigate to the root of the project and run this command:
40+
3241``` bash
3342podman-compose up -d
3443```
@@ -44,6 +53,7 @@ You'll be able to run NPM commands inside of the container.
4453
4554#### Remove and Stop the Container
4655To stop and remove the container, run this command:
56+
4757``` bash
4858podman-compose down
4959```
You can’t perform that action at this time.
0 commit comments