INSTALLING
Complete this procedure to invoke one-touch Domino setup with system environment variables if you run Domino on Docker.
Before you begin
Complete the following procedures:
SERVERSETUP_SERVER_TITLE=Renovations Mail Server
1. Create a volume to store the Domino data directory. For example, to create a volume called notesdata, run the following Docker command:
For example:
docker run -it -v notesdata:/local/notesdata --name adminserver --env-file env.txt -p 8585:8585 -p 1352:1352 -p 443:443 domino-docker:V1200 --autoconf
Your new Domino server should be up and running in a new Docker container.
If one-step setup fails for some reason, review theautoconfigure.log file created in the container. Since in this case the container won't be running, you can access the log file in one of the following ways:
1. Run a Docker command to create a container that launches into a bash shell that uses the same volume you specified in the procedure. For example:
docker cp <container>:/file/path/within/container /host/path/target
docker cp adminserver:/local/notesdata/IBM_TECHNICAL_SUPPORT/autoconfigure.log C:\tmp
Related concepts Domino on Docker