File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33yarn.lock
44.temp
55cache
6- yarn-error.log
6+ yarn-error.log
7+ Session.vim
8+ .DS_Store
Original file line number Diff line number Diff line change @@ -21,12 +21,21 @@ Navigate to `http://localhost:5173` to see your documentation if you run project
2121
2222#### Build an Image
2323To build an image, navigate to the root of the project and run this command:
24+
2425``` bash
2526podman-compose build
2627```
2728
29+ #### Create ` node_modules `
30+ Run this command to install npm packages and generate a ` node_modules ` directory on your local machine:
31+
32+ ``` bash
33+ podman-compose run --rm app npm i
34+ ```
35+
2836#### Run the Container
2937To run a container, navigate to the root of the project and run this command:
38+
3039``` bash
3140podman-compose up -d
3241```
@@ -35,6 +44,7 @@ You can visit `http://localhost:3000` to see your documentation.
3544
3645#### Enter the container
3746To enter inside of the container, run this command:
47+
3848``` bash
3949podman-compose exec app sh
4050```
@@ -43,6 +53,7 @@ You'll be able to run NPM commands inside of the container.
4353
4454#### Stop the container
4555After you are done working, run this to cleanup containers:
56+
4657``` bash
4758podman-compose down
4859```
You can’t perform that action at this time.
0 commit comments