Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs-en/rest-pki-core/on-premises/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For Docker-based setup the following image is provided on Docker Hub:
</center>
<br />

The currently recommended image is `lacunasoftware/restpkicore:4.3`
The currently recommended image is `lacunasoftware/restpkicore:4.5`

Available moving tags:

Expand All @@ -42,13 +42,13 @@ template to fill in the image's settings.
To fill the `General__EncryptionKey` setting, generate a 256-bit key to encrypt sensitive data stored on the database:

```sh
docker run lacunasoftware/restpkicore:4.3 -- gen-enc-key
docker run lacunasoftware/restpkicore:4.5 -- gen-enc-key
```

To fill the `General__RootPasswordHash` setting, choose a strong password for root access to the dashboard and hash it:

```sh
docker run -i lacunasoftware/restpkicore:4.3 -- hash-root-pass
docker run -i lacunasoftware/restpkicore:4.5 -- hash-root-pass
```

## Exposed ports
Expand Down Expand Up @@ -113,7 +113,7 @@ BlobStorage__Path=/var/app
Now, let's run the container with the configuration file, mounting the volume `restpkicore_data` on `/var/app` and exposing the app (which listens on port 80) on the host's port 8080:

```sh
docker run --name restpkicore --env-file restpkicore.env -v restpkicore_data:/var/app -p 8080:80 -d lacunasoftware/restpkicore:4.3
docker run --name restpkicore --env-file restpkicore.env -v restpkicore_data:/var/app -p 8080:80 -d lacunasoftware/restpkicore:4.5
```

:::tip
Expand Down
2 changes: 1 addition & 1 deletion docs-en/rest-pki-core/on-premises/tool/gen-enc-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dotnet Lacuna.RestPki.Site.dll -- gen-enc-key
Or, on Docker:

```sh
docker run lacunasoftware/restpkicore:4.3 -- gen-enc-key
docker run lacunasoftware/restpkicore:4.5 -- gen-enc-key
```

## Description
Expand Down
2 changes: 1 addition & 1 deletion docs-en/rest-pki-core/on-premises/tool/hash-root-pass.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dotnet Lacuna.RestPki.Site.dll -- hash-root-pass
Or, on Docker:

```sh
docker run -i lacunasoftware/restpkicore:4.3 -- hash-root-pass
docker run -i lacunasoftware/restpkicore:4.5 -- hash-root-pass
```

## Description
Expand Down
2 changes: 1 addition & 1 deletion docs-en/rest-pki-core/on-premises/tool/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dotnet Lacuna.RestPki.Site.dll [settings] -- command [command-options]
Or, on Docker, simply run the following on any directory:

```sh
docker run -i lacunasoftware/restpkicore:4.3 [settings] -- command [command-options]
docker run -i lacunasoftware/restpkicore:4.5 [settings] -- command [command-options]
```

The `settings` arguments are additional settings to overwrite settings from configuration files and environment variables,
Expand Down
2 changes: 1 addition & 1 deletion docs-en/rest-pki-core/on-premises/tool/test-email.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dotnet Lacuna.RestPki.Site.dll [settings] -- test-email <to-address>
Or, on Docker:

```sh
docker run -i lacunasoftware/restpkicore:4.3 [settings] -- test-email <to-address>
docker run -i lacunasoftware/restpkicore:4.5 [settings] -- test-email <to-address>
```

The `settings` arguments are additional settings to overwrite settings from configuration files and environment variables,
Expand Down
2 changes: 1 addition & 1 deletion docs-en/rest-pki-core/on-premises/tool/update-db.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dotnet Lacuna.RestPki.Site.dll [settings] -- update-db
Or, on Docker:

```sh
docker run -i lacunasoftware/restpkicore:4.3 [settings] -- update-db
docker run -i lacunasoftware/restpkicore:4.5 [settings] -- update-db
```

The `settings` arguments are additional settings to overwrite settings from configuration files and environment variables,
Expand Down
8 changes: 4 additions & 4 deletions docs/rest-pki-core/on-premises/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A imagem de Docker do Rest PKI Core encontra-se disponível no Docker Hub:
</center>
<br />

A imagem atualmente recomendada é a `lacunasoftware/restpkicore:4.3`
A imagem atualmente recomendada é a `lacunasoftware/restpkicore:4.5`

Tags móveis disponíveis:

Expand All @@ -42,13 +42,13 @@ para um guia de como preencher os parâmetros necessários.
Para preencher o parâmetro `General__EncryptionKey`, gere uma chave de 256 bits para encriptar dados sensíveis armazenados no banco de dados:

```sh
docker run lacunasoftware/restpkicore:4.3 -- gen-enc-key
docker run lacunasoftware/restpkicore:4.5 -- gen-enc-key
```

Para preencher o parâmetro `General__RootPasswordHash`, escolha uma senha forte para acesso à interface de gerenciamento como *root* e calcule o hash dela:

```sh
docker run -i lacunasoftware/restpkicore:4.3 -- hash-root-pass
docker run -i lacunasoftware/restpkicore:4.5 -- hash-root-pass
```

## Portas
Expand Down Expand Up @@ -114,7 +114,7 @@ Por fim, execute um container com a imagem usando o arquivo de configuração, m
na porta 80) na porta 8080 da máquina *host*:

```sh
docker run --name restpkicore --env-file restpkicore.env -v restpkicore_data:/var/app -p 8080:80 -d lacunasoftware/restpkicore:4.3
docker run --name restpkicore --env-file restpkicore.env -v restpkicore_data:/var/app -p 8080:80 -d lacunasoftware/restpkicore:4.5
```

:::tip
Expand Down