...
You can overwrite these with -e <key>=value
Command | Task |
---|
docker run | Start the container |
-d | run as daemon instead of in foreground |
--name {APPLICATION NAME} | gives the container a free choosable name while running (for easier access later). Info |
---|
Hint: You can start multiple instances of the same containers with different ports and different names. |
Example: Code Block |
---|
--name tia-contentserver |
|
FAQ
Expand |
---|
title | I do not want log files inside my container (for tia® Content Server core < 2.6.0 ) |
---|
|
Info |
---|
This is no longer required for tia® Content Server core 2.6.0 or higher |
Map it to the container with -v <Folder>/log4j2.xml:/application/config/log4j2.xml
And set environment variable for the container -e LOGGING_CONFIG=/application/config/log4j2.xml |
...