Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
Docs Required, Release Notes Required
Description
Docker container should have the ability to override default values by passing either the config file or environment variables, or command line arguments.
Sample docker-compose.yml which starts a 3 nodes cluster and shows both techniques:
version: "3.9" services: node1: image: "apacheignite/ignite3" environment: IGNITE_NODE_NAME: node1 ports: - 10300:10300 node2: image: "apacheignite/ignite3" environment: IGNITE_JOIN: node1:3344,node2:3344,node3:3344 IGNITE_NODE_NAME: node2 node3: image: "apacheignite/ignite3" command: --join node1:3344,node2:3344,node3:3344 --node-name node3
Attachments
Issue Links
- contains
-
IGNITE-17809 Improve passing arguments to docker container
- Resolved
- links to