...
Code Block |
---|
docker run --name tiacore-AL -p 8080:8080 -v data_volume:/temp/data -v ./tiacore/license:/application/config/license/ -v ./tiacore/repository.cfg:/application/config/repository.cfg -e LOGGING_LEVEL_ROOT=INFO -e WEBAPP_SECURITY_AUTH_BASIC_PASSWORD="\$2a\$10\$5E1KpGIKSq6xuWmGf92bheB17V0l4fEMnVmYPqhWiazKddcx1TF/e" -d images.docker.kgs-cloud.de/tia/core/saphttp:latest |
Explanation:
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).
Example:
| ||||
-p {HOST_PORT}:{SVC_PORT_IN_CONTAINER} | Maps the host port to the port in the container. Our Software runs on 8080 inside the container, therefore you always want to map your arbitrary host port to 8080. Sample:
| ||||
{IMAGE NAME AS LAST PARAMETER} | The Image to run
Example:
|
How to access the tia Core WebUI:
...
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:
...
FAQ
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
And set environment variable for the container |
...