Skip to content

Commit 57ffb74

Browse files
committed
docs(readme): add more podman info
1 parent 89e7809 commit 57ffb74

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
Session.vim

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,21 @@ Navigate to `http://localhost:3000` to see your documentation.
2323
2424
#### Build an Image
2525
To build an image, navigate to the root of the project and run this command:
26+
2627
```bash
2728
podman-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
3139
To run a container, navigate to the root of the project and run this command:
40+
3241
```bash
3342
podman-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
4655
To stop and remove the container, run this command:
56+
4757
```bash
4858
podman-compose down
4959
```

0 commit comments

Comments
 (0)