Docker run command arguments

To create containers for Domino, you use the the docker run command with the following arguments.

Note: When you issue commands in the Docker command-line interface, by default, you're required to precede commands with sudo. To avoid the need to do this, system administrators can create a UNIX group called docker and add appropriate users to it. The steps in this documentation assume use of the docker group and exclude the sudo prefix in docker commands. For more information on creating a docker group, see Post installation steps for Linux in the Docker documentation.
Table 1. docker run command arguments
Argument Description
<execution mode>

Specifies which mode to use when the container runs. Always use the specified mode when you run the container.

-it (and by default without) runs a container in interactive mode, which allows you to interact with the Domino server console from the Docker terminal.

Alternatively, you can use the -d argument to run a container in detached mode. In detached mode, Domino runs in the background and you access the server console through the Domino Administrator client and/or a container orchestration engine such as Kubernetes.

--rm Tells Docker to remove the container after the container stops. Typically this is used when creating a temporary container to run server setup or to perform an upgrade.
--name <container name> (required) Specifies a unique, friendly name to use to reference the container when issuing Docker commands.
-v <docker volume name> (required) Specifies the Docker volume to persistently store the Domino data directory.
Note: The volume is created if it doesn't exist already.
--hostname <hostname> (required) Specifies the host name that is mapped to the Domino container, typically the fully qualified internet host name of the host system on which Docker runs.
--cap-add=SYS_PTRACE (recommended) Enables settings to allow NSD to capture callstacks via the ptrace tool should a problem occur that requires a Support ticket.
--env secretpwfile=<container secrets file>
Sets a container variable, secretpwfile, that specifies the data directory path to a secrets file that stores the password for a Domino server ID. For example:
--env secretpwfile=/local/notesdata/secret/mysecret.sth
Required only when a server ID is password-protected and a container runs in detached mode. For more information, see Creating a secrets file for a password-protected server ID.
-p <HostPort:ContainerPort> Specifies which ports from the Domino container to publish to the host system. For proper Domino server function, the appropriate port for each desired Domino service must be listed. External hosts cannot reach services without published ports. For reference, here is a list of standard ports for common Domino services:
  • Remote server setup: 8585
  • NRPC: 1352
  • HTTP: 80
  • HTTP (SSL): 443
  • LDAP: 389
  • LDAP (SSL): 636
  • POP3: 110
  • POP3 (SSL): 995
  • IMAP: 143
  • IMAP (SSL): 993
  • SMTP: 25
  • SMTP (SSL): 465
  • DIIOP: 60148
  • DIIOP (SSL): 63149
  • Proton: 3003
  • Remote Debug Manager: 60000
  • Remote Debug Manager (SSL): 60001
Note: Server Controller and Java Console are not supported on a container-based Domino server.

To add or remove ports after initial Domino container creation, delete the container and create a new one that specifies all of the desired ports.

<image> (required) The name of the Docker image previously loaded to Docker from the tar archive file that is provided with the web kit download.
Tip:
Use docker image ls to see a list of available Docker images on the system.
<Domino image arguments>
  • --setup Launches Domino remote server setup for a new server.
  • --update Copies new or updated database templates to the data directory in the Docker volume during an upgrade.
  • --run-design Automatically runs the design process to update database design during an upgrade.

For a complete description of Docker commands, see Use the Docker command line in the Docker documentation. You can also type docker from your system's command prompt and press ENTER to see a description of each command.