https://github.com/vogler75/winccoa-images
Dockerfiles for WinCC OA
https://github.com/vogler75/winccoa-images
Last synced: about 2 months ago
JSON representation
Dockerfiles for WinCC OA
- Host: GitHub
- URL: https://github.com/vogler75/winccoa-images
- Owner: vogler75
- Created: 2017-10-13T21:02:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-19T11:29:38.000Z (about 5 years ago)
- Last Synced: 2025-02-25T18:51:40.537Z (2 months ago)
- Language: Shell
- Homepage:
- Size: 40 KB
- Stars: 15
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dockerfiles for WinCC OA based on CentOS
This repository contains Dockerfiles and samples to build Docker images for WinCC OA products.
## Build Docker Image
Download and unzip the CentOS WinCC OA rpm's to the [centos](centos)/software directory.
Only put those WinCC OA rpm's into the directory which you want to have installed in your image. For a minimum image you only need the base packag of WinCC OA.
`WinCC_OA_3.16-base-rhel-0-17.x86_64.rpm`
Build your WinCC OA Docker image with:
`docker build -t winccoa:3.16 .`
## WinCC OA Project in a Container
The project should be mounted on **/proj/start** as a volume to your docker container.And you may also mount a shield file to your docker container.
Example how to startup a WinCC OA project in a container:
```
docker run -d \
--name winccoa \
--hostname winccoa-server \
-v ~/shield.txt:/opt/WinCC_OA/3.16/shield.txt \
-v /proj/DemoApplication_3.16:/proj/start \
-p 5678:5678 \
winccoa:3.16
```## WinCC OA Gedi in a Container
To start a WinCC OA client application like a Gedi or a User-Interface you have to adapt your config file so that the proxy settings point to the WinCC OA server container. You can just create a copy of your config files (e.g. config.ui and progs.ui) and adapt the settings.
### config.ui
```
[general]
data = "winccoa-server"
event = "winccoa-server"
mxProxy = "winccoa-server :5678 cert"
```### progs.ui
```
version 1auth "" ""
#Manager | Start | SecKill | Restart# | ResetMin | Options
WCCILpmon | manual | 30 | 3 | 1 |
WCCOAui | manual | 30 | 2 | 2 |-m vision:WinCC_OA,393x172+315+298 -p vision/login.pnl -extend -iconBar -menuBar
WCCOAui | manual | 30 | 2 | 2 |-m gedi -user root:
WCCOAui | manual | 30 | 2 | 2 |-m para -user root:
```Then you can startup a Gedi/Ui with:
```
docker run --rm \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /proj/DemoApplication_3.16:/proj/default \
-v /proj/DemoApplication_3.16/config/progs.ui:/proj/default/config/progs \
-v /proj/DemoApplication_3.16/config/config.ui:/proj/default/config/config \
winccoa:3.16 \
WCCOAui -autoreg -m gedi -proj default
```Sure you can also use a copy of your project directory (or a git checkout if you use git) and adapt the config file.
## Start Project Administration as Container
With the Project Administration you can create a new project in the /proj directory.
```
docker run -ti --rm \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /proj:/proj \
winccoa:3.16 \
WCCOAui -projAdmin
```## Start Console Administration as Container
```
docker run -ti --rm \
--network vcm_default \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /proj/default:/proj/default \
-v /proj/default/config/progs.ui:/proj/default/config/progs \
-v /proj/default/config/config.ui:/proj/default/config/config \
winccoa:3.16 \
bash -i -c "reg.sh;WCCOAui -console"
```## Distributed Managers and Kubernetes
For sure what we have done with the Gedi can also be done with Control-Managers and Drivers. And in theory that can also be done with Kubernetes and so you can run your SCADA project in a Kubernetes Cluster.