Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.
For more information and upcoming events around #dominoforever, please visit our Destination Domino Page
Further documentation here : https://github.com/IBM/domino-docker/blob/master/docs/run-variables.md
and here: https://github.com/IBM/domino-docker/blob/master/docs/configjson.md
Also frist server setup should work with existing IDs. Second server setup also works. I have a configuraiton, we could add to the project.
Just tested it last week. The code we are leveraging is the standard Domino setup functionality. Thomas built functionaltiy that writes all the parameters to the pds file where the setup routine picks it up.
All exposed parameters are configurable via environment settings.
Just the setup is picky about some settings. For example even you have server.id you need to specify the name of the server.
I have a yaml file prepared for a 2nd server.
Note, you can get id files and passwords from files or from remote locations.
This gets the server.id from a trusted host in my environment.
[ Daniel Nashed / http://blog.nashcom.de ]
This is a small config that works with docker-compos up -d
version: '3'
services:
domino:
image: "hclcom/domino:latest"
container_name: domino_pluto
network_mode: host
ports:
- 80:80
- 1352:1352
volumes:
- domino_2nd_local:/local
environment:
isFirstServer: "false"
ServerName: mars
ServerIDFile: http://192.168.96.170/software/mars.id
OtherDirectoryServerName: pluto/NotesLab
OtherDirectoryServerAddress: pluto.notes.lab
volumes:
domino_2nd_local:
Second Server setup is possible, need to provide better documentation on how to do that.