Creating a Docker container for Volt

After you have set up a new Volt server using a temporary container, create the container to run the Volt server.

This procedure is almost identical to the one described in the domino-docker documentation. See Creating a container for Domino for details, but when you get to the docker run step, be sure to specify a valid volt-docker image tag. For example:
docker run -it --name volt -v notesdata:/local/notesdata --hostname docker.renovations.com \
    --cap-add=SYS_PTRACE -p 1352:1352 -p 443:443 -p 80:80 volt-docker:V1101-1.0.0.11

If you intend to access your Volt server via HTTPS, be sure to publish port 443 (e.g. -p 443:443). For HTTP access, be sure to publish port 80 (e.g. -p 80:80).

The Volt server container is created and the underlying Domino server starts.
Note: If your Domino server ID is password protected and you plan to create the Docker container in detached mode, refer to the domino-docker documentation for more information.