...
place repository.cfg to in a folder
replace <Name> with your custom name for the tia core container (application context name).
replace <Folder> with the Folderpath that contains the repository.cfg
replace <License> with the Folderpath that contains your license file
replace <Loglevel> with a log level of your choice e.g. DEBUG,INFO,ERROR
replace <BcryptHash> with a password of your choice encrypted with bcrypt (for an example please have a look on the section “Environment Variables” below)
replace <Version> with a available tia core version on harbor
...
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:
| ||||
-v {HOST_VOLUME}:{CONTAINER_VOLUME} | Maps a host directory into the file system of the container.
| ||||
-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:
|
...