Modified README
This commit is contained in:
parent
c51942b6d4
commit
a3555ceb78
1 changed files with 24 additions and 1 deletions
25
README.md
25
README.md
|
|
@ -57,16 +57,39 @@ pnpm build
|
|||
|
||||
### Docker
|
||||
|
||||
#### Edit name and port on docker-compose.yml
|
||||
|
||||
```
|
||||
sudo vim docker-compose.yml
|
||||
```
|
||||
|
||||
#### Run Docker Compose
|
||||
|
||||
```
|
||||
docker compose up -d
|
||||
```
|
||||
#### Remove the dangling image created
|
||||
|
||||
An node image was created as a requirement for the build process, to ensure dependencies are installed. This image is temporary and should be remove afer the built project is moved to nginx runtime image.
|
||||
|
||||
```
|
||||
docker rmi $(docker images -f "dangling=true" -q)
|
||||
```
|
||||
|
||||
### Podman
|
||||
|
||||
#### Run Podman Compose
|
||||
|
||||
```
|
||||
podman-compose up -d
|
||||
```
|
||||
|
||||
#### Remove the dangling image created
|
||||
|
||||
```
|
||||
podman rmi $(docker images -f "dangling=true" -q)
|
||||
```
|
||||
|
||||
### Podman Quadlet
|
||||
|
||||
#### Edit Quadlet Container
|
||||
|
|
@ -75,7 +98,7 @@ podman-compose up -d
|
|||
sudo vim quadlet/quadlet.container
|
||||
```
|
||||
|
||||
#### Copy Quadlet to proper directory
|
||||
#### Copy and Rename the Quadlet to proper directory
|
||||
|
||||
```
|
||||
mkdir -p ~/.config/containers/systemd/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue