Skip to content
Merged
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
5 changes: 3 additions & 2 deletions content/nap-dos/deployment-guide/learn-about-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -1878,7 +1878,8 @@ Make sure to replace upstream and proxy pass directives in this example with rel
For Debian/Ubuntu/Alpine/Amazon Linux:

```shell
DOCKER_BUILDKIT=1 docker build --no-cache --platform linux/amd64 --secret id=nginx-crt,src=nginx-repo.crt --secret id=nginx-key,src=nginx-repo.key --secret id=license-jwt,src=./license.jwt -t app-protect-dos . ```
DOCKER_BUILDKIT=1 docker build --no-cache --platform linux/amd64 --secret id=nginx-crt,src=nginx-repo.crt --secret id=nginx-key,src=nginx-repo.key --secret id=license-jwt,src=./license.jwt -t app-protect-dos .
```

For RHEL:

Expand Down Expand Up @@ -2001,7 +2002,7 @@ CMD ["sh", "/root/entrypoint.sh"]
### Debian Docker Deployment Example

```Dockerfile
# Where verionn can be: bullseye/bookworm
# Where version can be: bullseye/bookworm
FROM debian:bullseye

# Install prerequisite packages:
Expand Down
Loading